diff --git a/src/Generator.Bind/CSharpSpecWriter.cs b/src/Generator.Bind/CSharpSpecWriter.cs index 003cc71d..42a59f07 100644 --- a/src/Generator.Bind/CSharpSpecWriter.cs +++ b/src/Generator.Bind/CSharpSpecWriter.cs @@ -291,7 +291,7 @@ namespace Bind sw.WriteLine("[CLSCompliant(false)]"); } - sw.WriteLine("public static {0} {{ throw new NotImplementedException(); }}", GetDeclarationString(f, Settings.Compatibility)); + sw.WriteLine("public static {0} {{ throw new BindingsNotRewrittenException(); }}", GetDeclarationString(f, Settings.Compatibility)); } private void WriteDocumentation(BindStreamWriter sw, Function f) diff --git a/src/OpenTK/Exceptions.cs b/src/OpenTK/Exceptions.cs index 5eb6b929..b9be26ca 100644 --- a/src/OpenTK/Exceptions.cs +++ b/src/OpenTK/Exceptions.cs @@ -47,4 +47,15 @@ namespace OpenTK /// public override string Message { get; } } + + /// + /// This exception is thown when a binding method is called and the bindings have not been rewritten by Rewrite.exe. + /// + public class BindingsNotRewrittenException : Exception + { + /// + /// Constructs a new BindingsNotRewrittenException instance. + /// + public BindingsNotRewrittenException() : base("Rewrite.exe has not been run.") { } + } } \ No newline at end of file diff --git a/src/OpenTK/Graphics/ES11/ES11.cs b/src/OpenTK/Graphics/ES11/ES11.cs index f5efe6fd..e8b961b5 100644 --- a/src/OpenTK/Graphics/ES11/ES11.cs +++ b/src/OpenTK/Graphics/ES11/ES11.cs @@ -831,7 +831,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(); } + public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -847,7 +847,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -856,7 +856,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -865,7 +865,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Delete a sync object @@ -874,7 +874,7 @@ namespace OpenTK.Graphics.ES11 /// The sync object to be deleted. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -887,7 +887,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(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -900,34 +900,34 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [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(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -949,7 +949,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, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -971,7 +971,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, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -993,7 +993,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES11.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object @@ -1002,7 +1002,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -1023,11 +1023,11 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glResolveMultisampleFramebufferAPPLE")] - public static void ResolveMultisampleFramebuffer() { throw new NotImplementedException(); } + public static void ResolveMultisampleFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -1043,7 +1043,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(); } + public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -1059,7 +1059,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } } @@ -1071,7 +1071,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES11.All texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES11.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select active texture unit @@ -1080,7 +1080,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 8. texture must be one of Texture, where i ranges from 0 to (MaxCombinedTextureImageUnits - 1). The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the alpha test function @@ -1093,7 +1093,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFunc")] - public static void AlphaFunc(OpenTK.Graphics.ES11.All func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES11.All func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the alpha test function @@ -1105,13 +1105,13 @@ namespace OpenTK.Graphics.ES11 /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFunc")] - public static void AlphaFunc(OpenTK.Graphics.ES11.AlphaFunction func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES11.AlphaFunction func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFuncx")] - public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new NotImplementedException(); } + public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named buffer object @@ -1125,7 +1125,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static void BindBuffer(OpenTK.Graphics.ES11.All target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named buffer object @@ -1139,7 +1139,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static void BindBuffer(OpenTK.Graphics.ES11.All target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named buffer object @@ -1152,7 +1152,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.BufferTargetArb target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named buffer object @@ -1165,7 +1165,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.BufferTargetArb target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES11.BufferTargetArb target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named texture to a texturing target @@ -1179,7 +1179,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(); } + public static void BindTexture(OpenTK.Graphics.ES11.All target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named texture to a texturing target @@ -1193,7 +1193,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, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES11.All target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named texture to a texturing target @@ -1206,7 +1206,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(); } + public static void BindTexture(OpenTK.Graphics.ES11.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Bind a named texture to a texturing target @@ -1219,7 +1219,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, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES11.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -1232,7 +1232,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES11.All sfactor, OpenTK.Graphics.ES11.All dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES11.All sfactor, OpenTK.Graphics.ES11.All dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -1244,7 +1244,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES11.BlendingFactorSrc sfactor, OpenTK.Graphics.ES11.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES11.BlendingFactorSrc sfactor, OpenTK.Graphics.ES11.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1263,7 +1263,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1285,7 +1285,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1307,7 +1307,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1329,7 +1329,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1350,7 +1350,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES11.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1369,7 +1369,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1391,7 +1391,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1413,7 +1413,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1435,7 +1435,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1456,7 +1456,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES11.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1474,7 +1474,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1495,7 +1495,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1516,7 +1516,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1537,7 +1537,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1557,7 +1557,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1575,7 +1575,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES11.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1596,7 +1596,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1617,7 +1617,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1638,7 +1638,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Create and initialize a buffer object's data store @@ -1658,7 +1658,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES11.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1677,7 +1677,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1699,7 +1699,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1721,7 +1721,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1743,7 +1743,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1764,7 +1764,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1783,7 +1783,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1805,7 +1805,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1827,7 +1827,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1849,7 +1849,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1870,7 +1870,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1888,7 +1888,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1909,7 +1909,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1930,7 +1930,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1951,7 +1951,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1971,7 +1971,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -1989,7 +1989,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -2010,7 +2010,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -2031,7 +2031,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -2052,7 +2052,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Update a subset of a buffer object's data store @@ -2072,7 +2072,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES11.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -2082,7 +2082,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES11.All mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES11.All mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -2091,7 +2091,7 @@ namespace OpenTK.Graphics.ES11 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES11.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES11.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -2102,7 +2102,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use ClearMask overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] [CLSCompliant(false)] - public static void Clear(Int32 mask) { throw new NotImplementedException(); } + public static void Clear(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -2113,7 +2113,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use ClearMask overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")] [CLSCompliant(false)] - public static void Clear(UInt32 mask) { throw new NotImplementedException(); } + public static void Clear(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify clear values for the color buffers @@ -2131,7 +2131,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -2139,7 +2139,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearColorx")] - public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the depth buffer @@ -2148,12 +2148,12 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearDepthx")] - public static void ClearDepthx(Int32 depth) { throw new NotImplementedException(); } + public static void ClearDepthx(Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the stencil buffer @@ -2162,7 +2162,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select active texture unit @@ -2172,7 +2172,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClientActiveTexture")] - public static void ClientActiveTexture(OpenTK.Graphics.ES11.All texture) { throw new NotImplementedException(); } + public static void ClientActiveTexture(OpenTK.Graphics.ES11.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select active texture unit @@ -2181,7 +2181,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of Texture, where i ranges from 0 to the value of MaxTextureCoords - 1, which is an implementation-dependent value. The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClientActiveTexture")] - public static void ClientActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new NotImplementedException(); } + public static void ClientActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a plane against which all geometry is clipped @@ -2194,7 +2194,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, [CountAttribute(Count = 4)] Single[] eqn) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single[] eqn) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a plane against which all geometry is clipped @@ -2207,7 +2207,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, [CountAttribute(Count = 4)] ref Single eqn) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Single eqn) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a plane against which all geometry is clipped @@ -2220,28 +2220,28 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current color @@ -2259,7 +2259,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4f")] - public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current color @@ -2277,7 +2277,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4ub")] - public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new NotImplementedException(); } + public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -2285,7 +2285,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4x")] - public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable and disable writing of frame buffer color components @@ -2303,7 +2303,7 @@ namespace OpenTK.Graphics.ES11 /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2322,7 +2322,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2344,7 +2344,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2366,7 +2366,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2388,7 +2388,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2409,7 +2409,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2427,7 +2427,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2448,7 +2448,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2469,7 +2469,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2490,7 +2490,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of colors @@ -2510,7 +2510,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")] public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2541,7 +2541,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2575,7 +2575,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2609,7 +2609,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2643,7 +2643,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2676,7 +2676,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2706,7 +2706,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2739,7 +2739,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2772,7 +2772,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2805,7 +2805,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image in a compressed format @@ -2837,7 +2837,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -2871,7 +2871,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -2908,7 +2908,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -2945,7 +2945,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -2982,7 +2982,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3018,7 +3018,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3051,7 +3051,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3087,7 +3087,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3123,7 +3123,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3159,7 +3159,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage in a compressed format @@ -3194,7 +3194,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy pixels into a 2D texture image @@ -3225,7 +3225,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy pixels into a 2D texture image @@ -3255,7 +3255,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy a two-dimensional texture subimage @@ -3286,7 +3286,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Copy a two-dimensional texture subimage @@ -3316,7 +3316,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing polygons can be culled @@ -3326,7 +3326,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing polygons can be culled @@ -3335,7 +3335,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES11.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES11.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3345,7 +3345,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3355,7 +3355,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3368,7 +3368,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, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3381,7 +3381,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, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3394,7 +3394,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3407,7 +3407,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, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3420,7 +3420,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, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named buffer objects @@ -3433,7 +3433,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3443,7 +3443,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3453,7 +3453,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3466,7 +3466,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, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3479,7 +3479,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, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3492,7 +3492,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3505,7 +3505,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, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3518,7 +3518,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, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Delete named textures @@ -3531,7 +3531,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the value used for depth buffer comparisons @@ -3541,7 +3541,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES11.All func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES11.All func) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the value used for depth buffer comparisons @@ -3550,7 +3550,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES11.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES11.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable writing into the depth buffer @@ -3559,7 +3559,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -3571,35 +3571,35 @@ namespace OpenTK.Graphics.ES11 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthRangex")] - public static void DepthRangex(Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void DepthRangex(Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES11.All cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES11.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES11.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisableClientState")] - public static void DisableClientState(OpenTK.Graphics.ES11.All array) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.ES11.All array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisableClientState")] - public static void DisableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3615,7 +3615,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES11.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES11.All mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3631,7 +3631,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES11.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES11.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3646,7 +3646,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3665,7 +3665,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3687,7 +3687,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3709,7 +3709,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3731,7 +3731,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3752,7 +3752,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3771,7 +3771,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3793,7 +3793,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3815,7 +3815,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3837,7 +3837,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3858,7 +3858,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES11.BeginMode mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3876,7 +3876,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3897,7 +3897,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3918,7 +3918,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3939,7 +3939,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Render primitives from array data @@ -3959,7 +3959,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable server-side GL capabilities @@ -3969,7 +3969,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES11.All cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES11.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable server-side GL capabilities @@ -3978,7 +3978,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES11.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable client-side capability @@ -3988,7 +3988,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnableClientState")] - public static void EnableClientState(OpenTK.Graphics.ES11.All array) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.ES11.All array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable client-side capability @@ -3997,19 +3997,19 @@ namespace OpenTK.Graphics.ES11 /// Specifies the capability to enable. Symbolic constants ColorArray, EdgeFlagArray, FogCoordArray, IndexArray, NormalArray, SecondaryColorArray, TextureCoordArray, and VertexArray are accepted. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnableClientState")] - public static void EnableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4022,7 +4022,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogf")] - public static void Fog(OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4034,7 +4034,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogf")] - public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, Single param) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4048,7 +4048,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4062,7 +4062,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 unsafe void Fog(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Fog(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4075,7 +4075,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify fog parameters @@ -4088,27 +4088,27 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")] [CLSCompliant(false)] - public static unsafe void Fog(OpenTK.Graphics.ES11.FogParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Fog(OpenTK.Graphics.ES11.FogParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogx")] - public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogxv")] [CLSCompliant(false)] - public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogxv")] [CLSCompliant(false)] - public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define front- and back-facing polygons @@ -4118,7 +4118,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define front- and back-facing polygons @@ -4127,7 +4127,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES11.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES11.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix by a perspective matrix @@ -4151,7 +4151,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the distances to the near and far depth clipping planes. Both distances must be positive. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrustumf")] - public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4161,14 +4161,14 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrustumx")] - public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4181,7 +4181,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, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4194,7 +4194,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, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4207,7 +4207,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4220,7 +4220,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, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4233,7 +4233,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, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate buffer object names @@ -4246,14 +4246,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4266,7 +4266,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, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4279,7 +4279,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, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4292,7 +4292,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4305,7 +4305,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, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4318,7 +4318,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, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Generate texture names @@ -4331,20 +4331,20 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool GetBoolean(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool GetBoolean(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4352,7 +4352,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4360,7 +4360,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4368,28 +4368,28 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4406,7 +4406,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4423,7 +4423,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4440,7 +4440,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4456,7 +4456,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.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4472,7 +4472,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.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return parameters of a buffer object @@ -4488,7 +4488,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.BufferTargetArb target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the coefficients of the specified clipping plane @@ -4501,7 +4501,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, CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the coefficients of the specified clipping plane @@ -4514,7 +4514,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, CountAttribute(Count = 4)] out Single equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the coefficients of the specified clipping plane @@ -4527,74 +4527,74 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: 4] [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, CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return error information /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.ES11.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES11.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")] [CLSCompliant(false)] - public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [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] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [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 Int32 @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [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] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetFloat(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetFloat(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4602,7 +4602,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4610,7 +4610,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4618,41 +4618,41 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int32 GetInteger(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int32 GetInteger(OpenTK.Graphics.ES11.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4660,7 +4660,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4668,7 +4668,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4676,28 +4676,28 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4714,7 +4714,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4731,7 +4731,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4748,7 +4748,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 unsafe void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4764,7 +4764,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4780,7 +4780,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return light source parameter values @@ -4796,7 +4796,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4804,7 +4804,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4812,7 +4812,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4820,7 +4820,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4837,7 +4837,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4854,7 +4854,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4871,7 +4871,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 unsafe void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4887,7 +4887,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4903,7 +4903,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return material parameters @@ -4919,7 +4919,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4927,7 +4927,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4935,7 +4935,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -4943,7 +4943,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -4951,7 +4951,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new NotImplementedException(); } + public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -4959,7 +4959,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new NotImplementedException(); } + public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -4967,7 +4967,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static unsafe void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -4980,7 +4980,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -4996,7 +4996,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5012,7 +5012,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5028,7 +5028,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5043,7 +5043,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5055,7 +5055,7 @@ namespace OpenTK.Graphics.ES11 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5070,7 +5070,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5085,7 +5085,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5100,7 +5100,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the address of the specified pointer @@ -5114,7 +5114,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a string describing the current GL connection @@ -5124,7 +5124,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES11.All name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES11.All name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a string describing the current GL connection @@ -5133,7 +5133,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant, one of Vendor, Renderer, Version, ShadingLanguageVersion, or Extensions. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES11.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES11.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5150,7 +5150,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5167,7 +5167,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5184,7 +5184,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 unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5200,7 +5200,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5216,7 +5216,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5232,7 +5232,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5249,7 +5249,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5266,7 +5266,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5283,7 +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 unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5299,7 +5299,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5315,7 +5315,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture environment parameters @@ -5331,7 +5331,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5339,7 +5339,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5347,7 +5347,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5355,7 +5355,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5372,7 +5372,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5389,7 +5389,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5406,7 +5406,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 unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5422,7 +5422,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5438,7 +5438,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5454,7 +5454,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5471,7 +5471,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5488,7 +5488,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5505,7 +5505,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 unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5521,7 +5521,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5537,7 +5537,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -5553,7 +5553,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5561,7 +5561,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5569,7 +5569,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5577,7 +5577,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify implementation-specific hints @@ -5590,7 +5590,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify implementation-specific hints @@ -5602,7 +5602,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES11.HintTarget target, OpenTK.Graphics.ES11.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES11.HintTarget target, OpenTK.Graphics.ES11.HintMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Determine if a name corresponds to a buffer object @@ -5612,7 +5612,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(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Determine if a name corresponds to a buffer object @@ -5622,7 +5622,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Test whether a capability is enabled @@ -5632,7 +5632,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES11.All cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES11.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Test whether a capability is enabled @@ -5641,7 +5641,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES11.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Determine if a name corresponds to a texture @@ -5651,7 +5651,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(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Determine if a name corresponds to a texture @@ -5661,7 +5661,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5677,7 +5677,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightf")] - public static void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5692,7 +5692,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that parameter pname of light source light will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightf")] - public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Single param) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5709,7 +5709,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5726,7 +5726,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 unsafe void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5742,7 +5742,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set light source parameters @@ -5758,7 +5758,7 @@ namespace OpenTK.Graphics.ES11 /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5771,7 +5771,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelf")] - public static void LightModel(OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5783,7 +5783,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that param will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelf")] - public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, Single param) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5797,7 +5797,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5811,7 +5811,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 unsafe void LightModel(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void LightModel(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5824,7 +5824,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the lighting model parameters @@ -5837,34 +5837,34 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] [CLSCompliant(false)] - public static unsafe void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelx")] - public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] [CLSCompliant(false)] - public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")] [CLSCompliant(false)] - public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightx")] - public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5872,7 +5872,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -5880,7 +5880,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the width of rasterized lines @@ -5889,18 +5889,18 @@ namespace OpenTK.Graphics.ES11 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLineWidthx")] - public static void LineWidthx(Int32 width) { throw new NotImplementedException(); } + public static void LineWidthx(Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Replace the current matrix with the identity matrix /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadIdentity")] - public static void LoadIdentity() { throw new NotImplementedException(); } + public static void LoadIdentity() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Replace the current matrix with the specified matrix @@ -5910,7 +5910,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Replace the current matrix with the specified matrix @@ -5920,7 +5920,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Replace the current matrix with the specified matrix @@ -5930,25 +5930,25 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")] [CLSCompliant(false)] - public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a logical pixel operation for rendering @@ -5958,7 +5958,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLogicOp")] - public static void LogicOp(OpenTK.Graphics.ES11.All opcode) { throw new NotImplementedException(); } + public static void LogicOp(OpenTK.Graphics.ES11.All opcode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a logical pixel operation for rendering @@ -5967,7 +5967,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: Clear, Set, Copy, CopyInverted, Noop, Invert, And, Nand, Or, Nor, Xor, Equiv, AndReverse, AndInverted, OrReverse, and OrInverted. The initial value is Copy. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLogicOp")] - public static void LogicOp(OpenTK.Graphics.ES11.LogicOp opcode) { throw new NotImplementedException(); } + public static void LogicOp(OpenTK.Graphics.ES11.LogicOp opcode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -5983,7 +5983,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialf")] - public static void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -5998,7 +5998,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that parameter Shininess will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialf")] - public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Single param) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -6015,7 +6015,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -6032,7 +6032,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 unsafe void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -6048,7 +6048,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify material parameters for the lighting model @@ -6064,14 +6064,14 @@ namespace OpenTK.Graphics.ES11 /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialx")] - public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6079,7 +6079,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6087,7 +6087,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify which matrix is the current matrix @@ -6097,7 +6097,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMatrixMode")] - public static void MatrixMode(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void MatrixMode(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify which matrix is the current matrix @@ -6106,7 +6106,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies which matrix stack is the target for subsequent matrix operations. Three values are accepted: Modelview, Projection, and Texture. The initial value is Modelview. Additionally, if the ARB_imaging extension is supported, Color is also accepted. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMatrixMode")] - public static void MatrixMode(OpenTK.Graphics.ES11.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixMode(OpenTK.Graphics.ES11.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current texture coordinates @@ -6128,7 +6128,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4f")] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All target, Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current texture coordinates @@ -6149,7 +6149,7 @@ 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. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4f")] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit target, Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6158,7 +6158,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4x")] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix with the specified matrix @@ -6168,7 +6168,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix with the specified matrix @@ -6178,7 +6178,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix with the specified matrix @@ -6188,25 +6188,25 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static unsafe void MultMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [length: 16] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")] [CLSCompliant(false)] - public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the current normal vector @@ -6221,14 +6221,14 @@ namespace OpenTK.Graphics.ES11 /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormal3f")] - public static void Normal3(Single nx, Single ny, Single nz) { throw new NotImplementedException(); } + public static void Normal3(Single nx, Single ny, Single nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormal3x")] - public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6244,7 +6244,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] - public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6263,7 +6263,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6282,7 +6282,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6301,7 +6301,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6319,7 +6319,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] public static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6334,7 +6334,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] - public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6352,7 +6352,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6370,7 +6370,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6388,7 +6388,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of normals @@ -6405,7 +6405,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")] public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix with an orthographic matrix @@ -6429,7 +6429,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glOrthof")] - public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6439,7 +6439,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glOrthox")] - public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// /// @@ -6447,7 +6447,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new NotImplementedException(); } + public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -6455,7 +6455,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new NotImplementedException(); } + public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -6463,7 +6463,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static unsafe void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -6476,7 +6476,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -6488,13 +6488,13 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES11.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES11.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelStorex")] - public static void PixelStorex(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStorex(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify point parameters @@ -6506,7 +6506,7 @@ namespace OpenTK.Graphics.ES11 /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterf")] - public static void PointParameter(OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify point parameters @@ -6519,7 +6519,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify point parameters @@ -6532,27 +6532,27 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterx")] - public static void PointParameterx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterxv")] [CLSCompliant(false)] - public static void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterxv")] [CLSCompliant(false)] - public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the diameter of rasterized points @@ -6561,12 +6561,12 @@ namespace OpenTK.Graphics.ES11 /// Specifies the diameter of rasterized points. The initial value is 1. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointSize")] - public static void PointSize(Single size) { throw new NotImplementedException(); } + public static void PointSize(Single size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointSizex")] - public static void PointSizex(Int32 size) { throw new NotImplementedException(); } + public static void PointSizex(Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the scale and units used to calculate depth values @@ -6578,23 +6578,23 @@ namespace OpenTK.Graphics.ES11 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPolygonOffsetx")] - public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new NotImplementedException(); } + public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPopMatrix")] - public static void PopMatrix() { throw new NotImplementedException(); } + public static void PopMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Push and pop the current matrix stack /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPushMatrix")] - public static void PushMatrix() { throw new NotImplementedException(); } + public static void PushMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6622,7 +6622,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6653,7 +6653,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6684,7 +6684,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6715,7 +6715,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6745,7 +6745,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6772,7 +6772,7 @@ namespace OpenTK.Graphics.ES11 /// Returns the pixel data. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6802,7 +6802,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6832,7 +6832,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6862,7 +6862,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -6891,7 +6891,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix by a rotation matrix @@ -6909,7 +6909,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the x, y, and z coordinates of a vector, respectively. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glRotatef")] - public static void Rotate(Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Rotate(Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -6917,7 +6917,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glRotatex")] - public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify multisample coverage parameters @@ -6929,13 +6929,13 @@ namespace OpenTK.Graphics.ES11 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glSampleCoveragex")] - public static void SampleCoveragex(Int32 value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoveragex(Int32 value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix by a general scaling matrix @@ -6950,14 +6950,14 @@ namespace OpenTK.Graphics.ES11 /// Specify scale factors along the x, y, and z axes, respectively. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScalef")] - public static void Scale(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Scale(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScalex")] - public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define the scissor box @@ -6975,7 +6975,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select flat or smooth shading @@ -6985,7 +6985,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glShadeModel")] - public static void ShadeModel(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void ShadeModel(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select flat or smooth shading @@ -6994,7 +6994,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a symbolic value representing a shading technique. Accepted values are Flat and Smooth. The initial value is Smooth. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glShadeModel")] - public static void ShadeModel(OpenTK.Graphics.ES11.ShadingModel mode) { throw new NotImplementedException(); } + public static void ShadeModel(OpenTK.Graphics.ES11.ShadingModel mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -7011,7 +7011,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(); } + public static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -7028,7 +7028,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -7044,7 +7044,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(); } + public static void StencilFunc(OpenTK.Graphics.ES11.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -7060,7 +7060,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES11.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -7070,7 +7070,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(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -7080,7 +7080,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back stencil test actions @@ -7096,7 +7096,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES11.All fail, OpenTK.Graphics.ES11.All zfail, OpenTK.Graphics.ES11.All zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES11.All fail, OpenTK.Graphics.ES11.All zfail, OpenTK.Graphics.ES11.All zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back stencil test actions @@ -7111,7 +7111,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES11.StencilOp fail, OpenTK.Graphics.ES11.StencilOp zfail, OpenTK.Graphics.ES11.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES11.StencilOp fail, OpenTK.Graphics.ES11.StencilOp zfail, OpenTK.Graphics.ES11.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7130,7 +7130,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7152,7 +7152,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7174,7 +7174,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7196,7 +7196,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7217,7 +7217,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7235,7 +7235,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7256,7 +7256,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7277,7 +7277,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7298,7 +7298,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of texture coordinates @@ -7318,7 +7318,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7334,7 +7334,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvf")] - public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7349,7 +7349,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, 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 RgbScale or AlphaScale. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvf")] - public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7366,7 +7366,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7383,7 +7383,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 unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7399,7 +7399,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7415,7 +7415,7 @@ namespace OpenTK.Graphics.ES11 /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7431,7 +7431,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvi")] - public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7446,7 +7446,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, 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 RgbScale or AlphaScale. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvi")] - public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7463,7 +7463,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7480,7 +7480,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 unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7496,7 +7496,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture environment parameters @@ -7512,14 +7512,14 @@ namespace OpenTK.Graphics.ES11 /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvx")] - public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -7527,7 +7527,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -7535,7 +7535,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7569,7 +7569,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7606,7 +7606,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7643,7 +7643,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7680,7 +7680,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7716,7 +7716,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7749,7 +7749,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7785,7 +7785,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7821,7 +7821,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7857,7 +7857,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -7892,7 +7892,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7908,7 +7908,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7923,7 +7923,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value of pname. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7940,7 +7940,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7957,7 +7957,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 unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7973,7 +7973,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -7989,7 +7989,7 @@ namespace OpenTK.Graphics.ES11 /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8005,7 +8005,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8020,7 +8020,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the value of pname. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8037,7 +8037,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8054,7 +8054,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 unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8070,7 +8070,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -8086,14 +8086,14 @@ namespace OpenTK.Graphics.ES11 /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterx")] - public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -8101,7 +8101,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// @@ -8109,7 +8109,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8143,7 +8143,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8180,7 +8180,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8217,7 +8217,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8254,7 +8254,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8290,7 +8290,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8323,7 +8323,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8359,7 +8359,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8395,7 +8395,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8431,7 +8431,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture subimage @@ -8466,7 +8466,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Multiply the current matrix by a translation matrix @@ -8481,14 +8481,14 @@ namespace OpenTK.Graphics.ES11 /// Specify the x, y, and z coordinates of a translation vector. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTranslatef")] - public static void Translate(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Translate(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTranslatex")] - public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8507,7 +8507,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8529,7 +8529,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8551,7 +8551,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8573,7 +8573,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8594,7 +8594,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8612,7 +8612,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8633,7 +8633,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8654,7 +8654,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8675,7 +8675,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define an array of vertex data @@ -8695,7 +8695,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")] public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the viewport @@ -8713,7 +8713,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -8725,7 +8725,7 @@ namespace OpenTK.Graphics.ES11 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -8734,7 +8734,7 @@ namespace OpenTK.Graphics.ES11 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES11.BlendEquationModeExt mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES11.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -8742,7 +8742,7 @@ namespace OpenTK.Graphics.ES11 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES11.All[] attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES11.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -8750,7 +8750,7 @@ namespace OpenTK.Graphics.ES11 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES11.All attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES11.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -8758,7 +8758,7 @@ namespace OpenTK.Graphics.ES11 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES11.All* attachments) { throw new NotImplementedException(); } + public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES11.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -8773,7 +8773,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -8788,7 +8788,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -8799,7 +8799,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -8810,11 +8810,11 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES11.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES11.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8823,7 +8823,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8832,7 +8832,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8841,7 +8841,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8850,7 +8850,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8859,7 +8859,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8868,7 +8868,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8877,7 +8877,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8886,7 +8886,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8895,7 +8895,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8904,7 +8904,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8913,7 +8913,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -8922,7 +8922,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8941,7 +8941,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, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8960,7 +8960,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, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8979,7 +8979,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(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -8998,7 +8998,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, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9018,7 +9018,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, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9038,7 +9038,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, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9058,7 +9058,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9077,7 +9077,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, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9096,7 +9096,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, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -9115,7 +9115,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9138,7 +9138,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, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9163,7 +9163,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9188,7 +9188,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9213,7 +9213,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9238,7 +9238,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9261,7 +9261,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, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9286,7 +9286,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9311,7 +9311,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9336,7 +9336,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9361,7 +9361,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9384,7 +9384,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9409,7 +9409,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9434,7 +9434,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9459,7 +9459,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9484,7 +9484,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9506,7 +9506,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, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9530,7 +9530,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9554,7 +9554,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9578,7 +9578,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9602,7 +9602,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9624,7 +9624,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, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9648,7 +9648,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9672,7 +9672,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9696,7 +9696,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9720,7 +9720,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9742,7 +9742,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9766,7 +9766,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9790,7 +9790,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9814,7 +9814,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -9838,7 +9838,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES11.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9850,7 +9850,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9865,7 +9865,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9880,7 +9880,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9895,7 +9895,7 @@ namespace OpenTK.Graphics.ES11 [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, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -9909,7 +9909,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] 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, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -9930,7 +9930,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -9948,7 +9948,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -9969,7 +9969,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -9993,7 +9993,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10003,7 +10003,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10013,7 +10013,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10024,7 +10024,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10035,7 +10035,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10047,7 +10047,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -10059,7 +10059,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + 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 BindingsNotRewrittenException(); } } @@ -10076,7 +10076,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, [CountAttribute(Count = 4)] Single[] eqn) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single[] eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// Specify a plane against which all geometry is clipped @@ -10089,7 +10089,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, [CountAttribute(Count = 4)] ref Single eqn) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Single eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// Specify a plane against which all geometry is clipped @@ -10102,28 +10102,28 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Single* eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// /// [length: 4] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32[] eqn) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32[] eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// /// [length: 4] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Int32 eqn) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] ref Int32 eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_user_clip_plane] /// /// [length: 4] [AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32* eqn) { throw new NotImplementedException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All p, [CountAttribute(Count = 4)] Int32* eqn) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -10134,7 +10134,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -10145,7 +10145,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -10166,7 +10166,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } } @@ -10176,114 +10176,114 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10291,7 +10291,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10299,7 +10299,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10307,7 +10307,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10315,7 +10315,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10323,7 +10323,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -10331,45 +10331,45 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.ES11.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.ES11.All condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.ES11.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } } @@ -10379,13 +10379,13 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAccumxOES")] - public static void Accumx(OpenTK.Graphics.ES11.All op, Int32 value) { throw new NotImplementedException(); } + public static void Accumx(OpenTK.Graphics.ES11.All op, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAlphaFuncxOES")] - public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new NotImplementedException(); } + public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, Int32 @ref) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Bind a named framebuffer object @@ -10398,7 +10398,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(); } + public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Bind a named framebuffer object @@ -10411,7 +10411,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Bind a named renderbuffer object @@ -10424,7 +10424,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(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Bind a named renderbuffer object @@ -10437,7 +10437,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -10447,7 +10447,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(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -10457,7 +10457,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10469,7 +10469,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new NotImplementedException(); } + public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10481,7 +10481,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new NotImplementedException(); } + public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10493,7 +10493,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static unsafe void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new NotImplementedException(); } + public static unsafe void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10501,7 +10501,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBlendColorxOES")] - public static void BlendColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void BlendColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_blend_subtract] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -10510,7 +10510,7 @@ namespace OpenTK.Graphics.ES11 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "OES_blend_subtract", Version = "", EntryPoint = "glBlendEquationOES")] - public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_blend_equation_separate] /// Set the RGB blend equation and the alpha blend equation separately @@ -10522,7 +10522,7 @@ namespace OpenTK.Graphics.ES11 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "OES_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateOES")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_blend_func_separate] /// Specify pixel arithmetic for RGB and alpha components separately @@ -10540,7 +10540,7 @@ namespace OpenTK.Graphics.ES11 /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. /// [AutoGenerated(Category = "OES_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateOES")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Return the framebuffer completeness status of a framebuffer object @@ -10549,7 +10549,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer. /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glCheckFramebufferStatusOES")] - public static OpenTK.Graphics.ES11.All CheckFramebufferStatus(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES11.All CheckFramebufferStatus(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10557,7 +10557,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearAccumxOES")] - public static void ClearAccumx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearAccumx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10565,7 +10565,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearColorxOES")] - public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify the clear value for the depth buffer @@ -10574,12 +10574,12 @@ namespace OpenTK.Graphics.ES11 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClearDepthfOES")] - public static void ClearDepth(Single depth) { throw new NotImplementedException(); } + public static void ClearDepth(Single depth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearDepthxOES")] - public static void ClearDepthx(Int32 depth) { throw new NotImplementedException(); } + public static void ClearDepthx(Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -10592,7 +10592,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -10605,7 +10605,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Single equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -10618,53 +10618,53 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xOES")] - public static void Color3x(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void Color3x(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static void Color3x([CountAttribute(Count = 3)] Int32[] components) { throw new NotImplementedException(); } + public static void Color3x([CountAttribute(Count = 3)] Int32[] components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static void Color3x([CountAttribute(Count = 3)] ref Int32 components) { throw new NotImplementedException(); } + public static void Color3x([CountAttribute(Count = 3)] ref Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static unsafe void Color3x([CountAttribute(Count = 3)] Int32* components) { throw new NotImplementedException(); } + public static unsafe void Color3x([CountAttribute(Count = 3)] Int32* components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10672,32 +10672,32 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xOES")] - public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static void Color4x([CountAttribute(Count = 4)] Int32[] components) { throw new NotImplementedException(); } + public static void Color4x([CountAttribute(Count = 4)] Int32[] components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static void Color4x([CountAttribute(Count = 4)] ref Int32 components) { throw new NotImplementedException(); } + public static void Color4x([CountAttribute(Count = 4)] ref Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static unsafe void Color4x([CountAttribute(Count = 4)] Int32* components) { throw new NotImplementedException(); } + public static unsafe void Color4x([CountAttribute(Count = 4)] Int32* components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxOES")] - public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10705,7 +10705,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -10713,19 +10713,19 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")] [CLSCompliant(false)] - public static void CurrentPaletteMatrix(Int32 matrixpaletteindex) { throw new NotImplementedException(); } + public static void CurrentPaletteMatrix(Int32 matrixpaletteindex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")] [CLSCompliant(false)] - public static void CurrentPaletteMatrix(UInt32 matrixpaletteindex) { throw new NotImplementedException(); } + public static void CurrentPaletteMatrix(UInt32 matrixpaletteindex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10735,7 +10735,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10745,7 +10745,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10758,7 +10758,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10771,7 +10771,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10784,7 +10784,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10797,7 +10797,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10810,7 +10810,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named framebuffer objects @@ -10823,7 +10823,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10833,7 +10833,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10843,7 +10843,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10856,7 +10856,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10869,7 +10869,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10882,7 +10882,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10895,7 +10895,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10908,7 +10908,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Delete named renderbuffer objects @@ -10921,7 +10921,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10931,7 +10931,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10941,7 +10941,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10954,7 +10954,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10967,7 +10967,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10980,7 +10980,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -10993,7 +10993,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -11006,7 +11006,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -11019,7 +11019,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -11031,13 +11031,13 @@ namespace OpenTK.Graphics.ES11 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glDepthRangefOES")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glDepthRangexOES")] - public static void DepthRangex(Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void DepthRangex(Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// @@ -11046,25 +11046,25 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfOES")] - public static void DrawTex(Single x, Single y, Single z, Single width, Single height) { throw new NotImplementedException(); } + public static void DrawTex(Single x, Single y, Single z, Single width, Single height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] [CLSCompliant(false)] - public static void DrawTex(Single[] coords) { throw new NotImplementedException(); } + public static void DrawTex(Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] [CLSCompliant(false)] - public static void DrawTex(ref Single coords) { throw new NotImplementedException(); } + public static void DrawTex(ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")] [CLSCompliant(false)] - public static unsafe void DrawTex(Single* coords) { throw new NotImplementedException(); } + public static unsafe void DrawTex(Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// @@ -11073,25 +11073,25 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexiOES")] - public static void DrawTex(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void DrawTex(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] [CLSCompliant(false)] - public static void DrawTex(Int32[] coords) { throw new NotImplementedException(); } + public static void DrawTex(Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] [CLSCompliant(false)] - public static void DrawTex(ref Int32 coords) { throw new NotImplementedException(); } + public static void DrawTex(ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")] [CLSCompliant(false)] - public static unsafe void DrawTex(Int32* coords) { throw new NotImplementedException(); } + public static unsafe void DrawTex(Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// @@ -11100,25 +11100,25 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsOES")] - public static void DrawTex(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height) { throw new NotImplementedException(); } + public static void DrawTex(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] [CLSCompliant(false)] - public static void DrawTex(Int16[] coords) { throw new NotImplementedException(); } + public static void DrawTex(Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] [CLSCompliant(false)] - public static void DrawTex(ref Int16 coords) { throw new NotImplementedException(); } + public static void DrawTex(ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")] [CLSCompliant(false)] - public static unsafe void DrawTex(Int16* coords) { throw new NotImplementedException(); } + public static unsafe void DrawTex(Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// @@ -11127,72 +11127,72 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxOES")] - public static void DrawTexx(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void DrawTexx(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] [CLSCompliant(false)] - public static void DrawTexx(Int32[] coords) { throw new NotImplementedException(); } + public static void DrawTexx(Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] [CLSCompliant(false)] - public static void DrawTexx(ref Int32 coords) { throw new NotImplementedException(); } + public static void DrawTexx(ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_texture] /// [AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")] [CLSCompliant(false)] - public static unsafe void DrawTexx(Int32* coords) { throw new NotImplementedException(); } + public static unsafe void DrawTexx(Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")] - public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")] - public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xOES")] - public static void EvalCoord1x(Int32 u) { throw new NotImplementedException(); } + public static void EvalCoord1x(Int32 u) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void EvalCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void EvalCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xOES")] - public static void EvalCoord2x(Int32 u, Int32 v) { throw new NotImplementedException(); } + public static void EvalCoord2x(Int32 u, Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static void EvalCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void EvalCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static void EvalCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void EvalCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void EvalCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void EvalCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11200,7 +11200,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] Int32[] buffer) { throw new NotImplementedException(); } + public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] Int32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11208,7 +11208,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] ref Int32 buffer) { throw new NotImplementedException(); } + public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] ref Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11216,27 +11216,27 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] Int32* buffer) { throw new NotImplementedException(); } + public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, [CountAttribute(Parameter = "n")] Int32* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxOES")] - public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Attach a renderbuffer object to a framebuffer object @@ -11255,7 +11255,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Attach a renderbuffer object to a framebuffer object @@ -11274,7 +11274,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Attach a texture image to a framebuffer object @@ -11296,7 +11296,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Attach a texture image to a framebuffer object @@ -11318,7 +11318,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix by a perspective matrix @@ -11342,7 +11342,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the distances to the near and far depth clipping planes. Both distances must be positive. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glFrustumfOES")] - public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11352,7 +11352,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFrustumxOES")] - public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate a complete set of mipmaps for a texture object @@ -11361,14 +11361,14 @@ namespace OpenTK.Graphics.ES11 /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap. /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenerateMipmapOES")] - public static void GenerateMipmap(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11381,7 +11381,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11394,7 +11394,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11407,7 +11407,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11420,7 +11420,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11433,7 +11433,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate framebuffer object names @@ -11446,14 +11446,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11466,7 +11466,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11479,7 +11479,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11492,7 +11492,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11505,7 +11505,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11518,7 +11518,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Generate renderbuffer object names @@ -11531,14 +11531,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11551,7 +11551,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11564,7 +11564,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11577,7 +11577,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11590,7 +11590,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11603,7 +11603,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -11616,14 +11616,14 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// /// /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -11633,7 +11633,7 @@ namespace OpenTK.Graphics.ES11 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -11643,7 +11643,7 @@ namespace OpenTK.Graphics.ES11 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -11653,7 +11653,7 @@ namespace OpenTK.Graphics.ES11 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -11662,7 +11662,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -11675,7 +11675,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, CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -11688,7 +11688,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, CountAttribute(Count = 4)] out Single equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -11701,28 +11701,28 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11730,7 +11730,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11738,7 +11738,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11746,34 +11746,34 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); } + public static Int32 GetFixed(OpenTK.Graphics.ES11.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -11792,7 +11792,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -11811,7 +11811,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -11830,7 +11830,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11838,7 +11838,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11846,7 +11846,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11854,7 +11854,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11862,7 +11862,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11870,7 +11870,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11878,7 +11878,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11886,7 +11886,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(query)] [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, CountAttribute(Computed = "query")] Int32[] v) { throw new NotImplementedException(); } + public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11894,7 +11894,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(query)] [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, CountAttribute(Computed = "query")] out Int32 v) { throw new NotImplementedException(); } + public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11902,14 +11902,14 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(query)] [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, CountAttribute(Computed = "query")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxOES")] - public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11917,7 +11917,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11925,7 +11925,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -11941,7 +11941,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -11957,7 +11957,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -11973,7 +11973,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11981,7 +11981,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11989,7 +11989,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -11997,7 +11997,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12013,7 +12013,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12029,7 +12029,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12045,7 +12045,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12061,7 +12061,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12077,7 +12077,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Return texture coordinate generation parameters @@ -12093,7 +12093,7 @@ namespace OpenTK.Graphics.ES11 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -12101,7 +12101,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -12109,7 +12109,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -12117,7 +12117,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12126,7 +12126,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12135,7 +12135,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12144,7 +12144,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12152,7 +12152,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12160,7 +12160,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12168,18 +12168,18 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxOES")] - public static void Indexx(Int32 component) { throw new NotImplementedException(); } + public static void Indexx(Int32 component) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxvOES")] [CLSCompliant(false)] - public static unsafe void Indexx([CountAttribute(Count = 1)] Int32* component) { throw new NotImplementedException(); } + public static unsafe void Indexx([CountAttribute(Count = 1)] Int32* component) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Determine if a name corresponds to a framebuffer object @@ -12189,7 +12189,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferOES")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Determine if a name corresponds to a framebuffer object @@ -12199,7 +12199,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferOES")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Determine if a name corresponds to a renderbuffer object @@ -12209,7 +12209,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferOES")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Determine if a name corresponds to a renderbuffer object @@ -12219,7 +12219,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferOES")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -12229,7 +12229,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(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -12239,34 +12239,34 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxOES")] - public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxOES")] - public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12274,7 +12274,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] - public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12282,52 +12282,52 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLineWidthxOES")] - public static void LineWidthx(Int32 width) { throw new NotImplementedException(); } + public static void LineWidthx(Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glLoadPaletteFromModelViewMatrixOES")] - public static void LoadPaletteFromModelViewMatrix() { throw new NotImplementedException(); } + public static void LoadPaletteFromModelViewMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12337,7 +12337,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap1xOES")] - public static void Map1x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new NotImplementedException(); } + public static void Map1x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12351,7 +12351,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap2xOES")] - public static void Map2x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new NotImplementedException(); } + public static void Map2x(OpenTK.Graphics.ES11.All target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -12363,14 +12363,14 @@ namespace OpenTK.Graphics.ES11 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid1xOES")] - public static void MapGrid1x(Int32 n, Int32 u1, Int32 u2) { throw new NotImplementedException(); } + public static void MapGrid1x(Int32 n, Int32 u1, Int32 u2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12379,14 +12379,14 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid2xOES")] - public static void MapGrid2x(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void MapGrid2x(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxOES")] - public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12394,7 +12394,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] - public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12402,7 +12402,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12410,7 +12410,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")] - public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12421,7 +12421,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12432,7 +12432,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12443,7 +12443,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -12453,7 +12453,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12466,7 +12466,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(); } + public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12479,7 +12479,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] - public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, SByte s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12492,7 +12492,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12505,20 +12505,20 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xOES")] - public static void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, Int32 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12534,7 +12534,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(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12550,7 +12550,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12563,7 +12563,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12576,7 +12576,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12589,7 +12589,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12602,7 +12602,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12615,7 +12615,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12628,35 +12628,35 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xOES")] - public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12675,7 +12675,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(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12694,7 +12694,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12707,7 +12707,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12720,7 +12720,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12733,7 +12733,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12746,7 +12746,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12759,7 +12759,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12772,7 +12772,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12780,28 +12780,28 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xOES")] - public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12823,7 +12823,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(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12845,7 +12845,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12858,7 +12858,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12871,7 +12871,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12884,7 +12884,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12897,7 +12897,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12910,7 +12910,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -12923,7 +12923,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -12932,89 +12932,89 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xOES")] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static void MultTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xOES")] - public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static void Normal3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void Normal3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static void Normal3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Normal3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static unsafe void Normal3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Normal3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix with an orthographic matrix @@ -13038,7 +13038,7 @@ namespace OpenTK.Graphics.ES11 /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glOrthofOES")] - public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13048,51 +13048,51 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glOrthoxOES")] - public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPassThroughxOES")] - public static void PassThroughx(Int32 token) { throw new NotImplementedException(); } + public static void PassThroughx(Int32 token) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelTransferxOES")] - public static void PixelTransferx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTransferx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelZoomxOES")] - public static void PixelZoomx(Int32 xfactor, Int32 yfactor) { throw new NotImplementedException(); } + public static void PixelZoomx(Int32 xfactor, Int32 yfactor) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxOES")] - public static void PointParameterx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] [CLSCompliant(false)] - public static void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] [CLSCompliant(false)] - public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")] - public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// @@ -13102,7 +13102,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// @@ -13112,7 +13112,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// @@ -13122,7 +13122,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_point_size_array] /// @@ -13131,18 +13131,18 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")] public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointSizexOES")] - public static void PointSizex(Int32 size) { throw new NotImplementedException(); } + public static void PointSizex(Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPolygonOffsetxOES")] - public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new NotImplementedException(); } + public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13150,7 +13150,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13158,7 +13158,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13166,7 +13166,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13174,7 +13174,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13182,7 +13182,7 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13190,77 +13190,77 @@ namespace OpenTK.Graphics.ES11 /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32[] mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32[] exponent) { throw new NotImplementedException(); } + public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32[] mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32[] exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] out Int32 mantissa, [OutAttribute, CountAttribute(Count = 16)] out Int32 exponent) { throw new NotImplementedException(); } + public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] out Int32 mantissa, [OutAttribute, CountAttribute(Count = 16)] out Int32 exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static unsafe Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent) { throw new NotImplementedException(); } + public static unsafe Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xOES")] - public static void RasterPos2x(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void RasterPos2x(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static void RasterPos2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static void RasterPos2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xOES")] - public static void RasterPos3x(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void RasterPos3x(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static void RasterPos3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static void RasterPos3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13268,25 +13268,25 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xOES")] - public static void RasterPos4x(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void RasterPos4x(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static void RasterPos4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static void RasterPos4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13294,28 +13294,28 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxOES")] - public static void Rectx(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new NotImplementedException(); } + public static void Rectx(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static void Rectx([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new NotImplementedException(); } + public static void Rectx([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static void Rectx([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new NotImplementedException(); } + public static void Rectx([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static unsafe void Rectx([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new NotImplementedException(); } + public static unsafe void Rectx([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_framebuffer_object] /// Create and initialize a renderbuffer object's data store @@ -13333,7 +13333,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies the height of the renderbuffer in pixels. /// [AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glRenderbufferStorageOES")] - public static void RenderbufferStorage(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13341,20 +13341,20 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRotatexOES")] - public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glSampleCoveragexOES")] - public static void SampleCoveragex(Int32 value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoveragex(Int32 value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glScalexOES")] - public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13364,7 +13364,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] [CLSCompliant(false)] - public static void TexCoord1(Byte s) { throw new NotImplementedException(); } + public static void TexCoord1(Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13374,7 +13374,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] [CLSCompliant(false)] - public static void TexCoord1(SByte s) { throw new NotImplementedException(); } + public static void TexCoord1(SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13384,7 +13384,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13394,18 +13394,18 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xOES")] - public static void TexCoord1x(Int32 s) { throw new NotImplementedException(); } + public static void TexCoord1x(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13418,7 +13418,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(); } + public static void TexCoord2(Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13431,7 +13431,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] [CLSCompliant(false)] - public static void TexCoord2(SByte s, SByte t) { throw new NotImplementedException(); } + public static void TexCoord2(SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13441,7 +13441,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13451,7 +13451,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13461,7 +13461,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13471,7 +13471,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13481,7 +13481,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13491,31 +13491,31 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xOES")] - public static void TexCoord2x(Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void TexCoord2x(Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static void TexCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static void TexCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13531,7 +13531,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(); } + public static void TexCoord3(Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13547,7 +13547,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] [CLSCompliant(false)] - public static void TexCoord3(SByte s, SByte t, SByte r) { throw new NotImplementedException(); } + public static void TexCoord3(SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13557,7 +13557,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13567,7 +13567,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13577,7 +13577,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13587,7 +13587,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13597,7 +13597,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13607,32 +13607,32 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xOES")] - public static void TexCoord3x(Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void TexCoord3x(Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static void TexCoord3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static void TexCoord3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13651,7 +13651,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(); } + public static void TexCoord4(Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13670,7 +13670,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void TexCoord4(SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13680,7 +13680,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13690,7 +13690,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13700,7 +13700,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13710,7 +13710,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13720,7 +13720,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -13730,7 +13730,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13738,32 +13738,32 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xOES")] - public static void TexCoord4x(Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void TexCoord4x(Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static void TexCoord4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static void TexCoord4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxOES")] - public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13771,7 +13771,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] - public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13779,7 +13779,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13794,7 +13794,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfOES")] - public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13810,7 +13810,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13826,7 +13826,7 @@ namespace OpenTK.Graphics.ES11 /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13841,7 +13841,7 @@ namespace OpenTK.Graphics.ES11 /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGeniOES")] - public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13857,7 +13857,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_cube_map] /// Control the generation of texture coordinates @@ -13873,14 +13873,14 @@ namespace OpenTK.Graphics.ES11 /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// /// /// [AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxOES")] - public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -13888,7 +13888,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point|OES_texture_cube_map] /// @@ -13896,14 +13896,14 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxOES")] - public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13911,7 +13911,7 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] - public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -13919,19 +13919,19 @@ namespace OpenTK.Graphics.ES11 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTranslatexOES")] - public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES11.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13944,7 +13944,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] [CLSCompliant(false)] - public static void Vertex2(Byte x, Byte y) { throw new NotImplementedException(); } + public static void Vertex2(Byte x, Byte y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13957,7 +13957,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] [CLSCompliant(false)] - public static void Vertex2(SByte x, SByte y) { throw new NotImplementedException(); } + public static void Vertex2(SByte x, SByte y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13967,7 +13967,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13977,7 +13977,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13987,7 +13987,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -13997,7 +13997,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14007,7 +14007,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14017,24 +14017,24 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xOES")] - public static void Vertex2x(Int32 x) { throw new NotImplementedException(); } + public static void Vertex2x(Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] [CLSCompliant(false)] - public static void Vertex2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14050,7 +14050,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] [CLSCompliant(false)] - public static void Vertex3(Byte x, Byte y, Byte z) { throw new NotImplementedException(); } + public static void Vertex3(Byte x, Byte y, Byte z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14066,7 +14066,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] [CLSCompliant(false)] - public static void Vertex3(SByte x, SByte y, SByte z) { throw new NotImplementedException(); } + public static void Vertex3(SByte x, SByte y, SByte z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14076,7 +14076,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14086,7 +14086,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14096,7 +14096,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14106,7 +14106,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14116,7 +14116,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14126,31 +14126,31 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xOES")] - public static void Vertex3x(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void Vertex3x(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static void Vertex3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static void Vertex3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Vertex3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14169,7 +14169,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, Byte w) { throw new NotImplementedException(); } + public static void Vertex4(Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14188,7 +14188,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] [CLSCompliant(false)] - public static void Vertex4(SByte x, SByte y, SByte z, SByte w) { throw new NotImplementedException(); } + public static void Vertex4(SByte x, SByte y, SByte z, SByte w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14198,7 +14198,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14208,7 +14208,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14218,7 +14218,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14228,7 +14228,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14238,7 +14238,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -14248,32 +14248,32 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xOES")] - public static void Vertex4x(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Vertex4x(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static void Vertex4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static void Vertex4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Vertex4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14281,7 +14281,7 @@ namespace OpenTK.Graphics.ES11 /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")] - public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14292,7 +14292,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14303,7 +14303,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14314,7 +14314,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_matrix_palette] /// @@ -14324,7 +14324,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")] public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -14334,43 +14334,43 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] - public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14379,7 +14379,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14388,7 +14388,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14397,7 +14397,7 @@ namespace OpenTK.Graphics.ES11 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14405,7 +14405,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14414,7 +14414,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14422,7 +14422,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14431,7 +14431,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14440,7 +14440,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14449,7 +14449,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14457,7 +14457,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14466,7 +14466,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -14475,7 +14475,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14484,7 +14484,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14492,7 +14492,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14501,7 +14501,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14510,7 +14510,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14519,7 +14519,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14527,7 +14527,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14536,7 +14536,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -14545,7 +14545,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14554,7 +14554,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14563,7 +14563,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14572,7 +14572,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14581,7 +14581,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14590,7 +14590,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -14599,7 +14599,7 @@ namespace OpenTK.Graphics.ES11 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14608,7 +14608,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14616,7 +14616,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14625,7 +14625,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14634,7 +14634,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14643,7 +14643,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14651,7 +14651,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14660,7 +14660,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -14669,7 +14669,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14678,7 +14678,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14686,7 +14686,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14695,7 +14695,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14704,7 +14704,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14713,7 +14713,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14721,7 +14721,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14730,7 +14730,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -14739,7 +14739,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14748,7 +14748,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14756,7 +14756,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14765,7 +14765,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14774,7 +14774,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14783,7 +14783,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14791,7 +14791,7 @@ namespace OpenTK.Graphics.ES11 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14800,7 +14800,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -14809,7 +14809,7 @@ namespace OpenTK.Graphics.ES11 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14819,7 +14819,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14829,7 +14829,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14839,7 +14839,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14849,7 +14849,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14859,7 +14859,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14869,7 +14869,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14884,7 +14884,7 @@ namespace OpenTK.Graphics.ES11 /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] - 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, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); } + 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, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14902,7 +14902,7 @@ namespace OpenTK.Graphics.ES11 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14920,7 +14920,7 @@ namespace OpenTK.Graphics.ES11 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14938,7 +14938,7 @@ namespace OpenTK.Graphics.ES11 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14955,7 +14955,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] 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] ref T10 texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14963,7 +14963,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14971,7 +14971,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14979,7 +14979,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14987,7 +14987,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -14995,7 +14995,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -15003,26 +15003,26 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")] - public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15030,7 +15030,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15038,7 +15038,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15046,7 +15046,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15054,7 +15054,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15062,7 +15062,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15070,7 +15070,7 @@ namespace OpenTK.Graphics.ES11 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15079,7 +15079,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15088,7 +15088,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15097,7 +15097,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15106,7 +15106,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15115,7 +15115,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -15124,7 +15124,7 @@ namespace OpenTK.Graphics.ES11 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -15134,7 +15134,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -15144,7 +15144,7 @@ namespace OpenTK.Graphics.ES11 /// [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(); } + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/ES11/ES11Obsolete.cs b/src/OpenTK/Graphics/ES11/ES11Obsolete.cs index 25d7377e..4249425c 100644 --- a/src/OpenTK/Graphics/ES11/ES11Obsolete.cs +++ b/src/OpenTK/Graphics/ES11/ES11Obsolete.cs @@ -42,7 +42,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")] [CLSCompliant(false)] [Obsolete("Use GetClipPlane(..., float[]) instead. This method will return incorrect results.")] - public static Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); } + public static Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return the coefficients of the specified clipping plane @@ -55,7 +55,7 @@ namespace OpenTK.Graphics.ES11 [AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")] [CLSCompliant(false)] [Obsolete("Use GetClipPlane(..., int[]) instead. This method will return incorrect results.")] - public static int GetClipPlanex(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); } + public static int GetClipPlanex(OpenTK.Graphics.ES11.All plane) { throw new BindingsNotRewrittenException(); } } } diff --git a/src/OpenTK/Graphics/ES20/ES20.cs b/src/OpenTK/Graphics/ES20/ES20.cs index b761a25c..42f19f9e 100644 --- a/src/OpenTK/Graphics/ES20/ES20.cs +++ b/src/OpenTK/Graphics/ES20/ES20.cs @@ -1333,126 +1333,126 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1462,7 +1462,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1472,7 +1472,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1482,7 +1482,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [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, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1492,7 +1492,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1502,7 +1502,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1512,7 +1512,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [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, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1521,7 +1521,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1532,7 +1532,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1543,7 +1543,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1554,7 +1554,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1565,7 +1565,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1574,7 +1574,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1585,7 +1585,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1596,7 +1596,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1607,7 +1607,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1618,7 +1618,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1628,7 +1628,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1638,7 +1638,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1648,7 +1648,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1658,7 +1658,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1668,7 +1668,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1678,7 +1678,7 @@ namespace OpenTK.Graphics.ES20 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1688,7 +1688,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1698,7 +1698,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1708,7 +1708,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1718,7 +1718,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1726,7 +1726,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1734,7 +1734,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1742,7 +1742,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1750,7 +1750,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1758,7 +1758,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1766,7 +1766,7 @@ namespace OpenTK.Graphics.ES20 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1775,7 +1775,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1784,7 +1784,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1793,7 +1793,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1802,7 +1802,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1812,7 +1812,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1822,7 +1822,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1832,7 +1832,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1842,7 +1842,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1852,7 +1852,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1862,7 +1862,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } } @@ -1903,7 +1903,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.All mask, OpenTK.Graphics.ES20.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.All mask, OpenTK.Graphics.ES20.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -1939,7 +1939,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -1958,7 +1958,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -1976,7 +1976,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -1998,7 +1998,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2023,7 +2023,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2048,7 +2048,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2073,7 +2073,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2097,7 +2097,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2118,7 +2118,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2142,7 +2142,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2166,7 +2166,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2190,7 +2190,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2213,7 +2213,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2223,7 +2223,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2233,7 +2233,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2243,7 +2243,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2253,7 +2253,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2263,7 +2263,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2273,7 +2273,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2295,7 +2295,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2316,7 +2316,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2329,7 +2329,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2342,7 +2342,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } } @@ -2363,7 +2363,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(); } + public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2380,7 +2380,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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2396,7 +2396,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(); } + public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2412,7 +2412,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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2421,7 +2421,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2430,7 +2430,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Delete a sync object @@ -2439,7 +2439,7 @@ namespace OpenTK.Graphics.ES20 /// The sync object to be deleted. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2452,7 +2452,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] - public static IntPtr FenceSync(OpenTK.Graphics.ES20.All condition, OpenTK.Graphics.ES20.All flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES20.All condition, OpenTK.Graphics.ES20.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2464,20 +2464,20 @@ namespace OpenTK.Graphics.ES20 /// 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. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] - public static IntPtr FenceSync(OpenTK.Graphics.ES20.SyncCondition condition, OpenTK.Graphics.ES20.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES20.SyncCondition condition, OpenTK.Graphics.ES20.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2485,7 +2485,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2493,7 +2493,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2501,28 +2501,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [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(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2545,7 +2545,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, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2568,7 +2568,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, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2591,7 +2591,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2613,7 +2613,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, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2635,7 +2635,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, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2657,7 +2657,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES20.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object @@ -2666,7 +2666,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2688,7 +2688,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2709,11 +2709,11 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glResolveMultisampleFramebufferAPPLE")] - public static void ResolveMultisampleFramebuffer() { throw new NotImplementedException(); } + public static void ResolveMultisampleFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2730,7 +2730,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(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2747,7 +2747,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, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2763,7 +2763,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(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2779,7 +2779,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, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } } @@ -2787,7 +2787,7 @@ namespace OpenTK.Graphics.ES20 { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -2799,7 +2799,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES20.All texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES20.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Select active texture unit @@ -2808,7 +2808,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 8. texture must be one of Texture, where i ranges from 0 to (MaxCombinedTextureImageUnits - 1). The initial value is Texture0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES20.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES20.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a shader object to a program object @@ -2821,7 +2821,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(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a shader object to a program object @@ -2834,7 +2834,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associate a generic vertex attribute index with a named attribute variable @@ -2850,7 +2850,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(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associate a generic vertex attribute index with a named attribute variable @@ -2866,7 +2866,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -2880,7 +2880,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(); } + public static void BindBuffer(OpenTK.Graphics.ES20.All target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -2894,7 +2894,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES20.All target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -2907,7 +2907,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(); } + public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -2920,7 +2920,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named framebuffer object @@ -2934,7 +2934,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(); } + public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named framebuffer object @@ -2948,7 +2948,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, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named framebuffer object @@ -2961,7 +2961,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(); } + public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named framebuffer object @@ -2974,7 +2974,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, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named renderbuffer object @@ -2988,7 +2988,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(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named renderbuffer object @@ -3002,7 +3002,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named renderbuffer object @@ -3015,7 +3015,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(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named renderbuffer object @@ -3028,7 +3028,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3042,7 +3042,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(); } + public static void BindTexture(OpenTK.Graphics.ES20.All target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3056,7 +3056,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, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES20.All target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3069,7 +3069,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(); } + public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3082,7 +3082,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, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the blend color @@ -3100,7 +3100,7 @@ namespace OpenTK.Graphics.ES20 /// specify the components of BlendColor /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3110,7 +3110,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3119,7 +3119,7 @@ namespace OpenTK.Graphics.ES20 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3132,7 +3132,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3144,7 +3144,7 @@ namespace OpenTK.Graphics.ES20 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3157,7 +3157,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES20.All sfactor, OpenTK.Graphics.ES20.All dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES20.All sfactor, OpenTK.Graphics.ES20.All dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3169,7 +3169,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES20.BlendingFactorSrc sfactor, OpenTK.Graphics.ES20.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES20.BlendingFactorSrc sfactor, OpenTK.Graphics.ES20.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3188,7 +3188,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES20.All sfactorRGB, OpenTK.Graphics.ES20.All dfactorRGB, OpenTK.Graphics.ES20.All sfactorAlpha, OpenTK.Graphics.ES20.All dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES20.All sfactorRGB, OpenTK.Graphics.ES20.All dfactorRGB, OpenTK.Graphics.ES20.All sfactorAlpha, OpenTK.Graphics.ES20.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3206,7 +3206,7 @@ namespace OpenTK.Graphics.ES20 /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES20.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES20.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES20.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES20.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES20.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES20.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES20.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES20.BlendingFactorDest dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3225,7 +3225,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3247,7 +3247,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3269,7 +3269,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3291,7 +3291,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3312,7 +3312,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3331,7 +3331,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3353,7 +3353,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3375,7 +3375,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3397,7 +3397,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3418,7 +3418,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3437,7 +3437,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use BufferUsageHint overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3455,7 +3455,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3477,7 +3477,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3498,7 +3498,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3520,7 +3520,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3541,7 +3541,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3563,7 +3563,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3584,7 +3584,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3605,7 +3605,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3625,7 +3625,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3644,7 +3644,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use BufferUsageHint overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3662,7 +3662,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3684,7 +3684,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3705,7 +3705,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3727,7 +3727,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3748,7 +3748,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3770,7 +3770,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3791,7 +3791,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3812,7 +3812,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.BufferUsage usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a buffer object's data store @@ -3832,7 +3832,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES20.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3851,7 +3851,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3873,7 +3873,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3895,7 +3895,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3917,7 +3917,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3938,7 +3938,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3957,7 +3957,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -3979,7 +3979,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4001,7 +4001,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4023,7 +4023,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4044,7 +4044,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4062,7 +4062,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4083,7 +4083,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4104,7 +4104,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4125,7 +4125,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4145,7 +4145,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4163,7 +4163,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4184,7 +4184,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4205,7 +4205,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4226,7 +4226,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Update a subset of a buffer object's data store @@ -4246,7 +4246,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the framebuffer completeness status of a framebuffer object @@ -4256,7 +4256,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the framebuffer completeness status of a framebuffer object @@ -4265,7 +4265,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4275,7 +4275,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES20.All mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES20.All mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4284,7 +4284,7 @@ namespace OpenTK.Graphics.ES20 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES20.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES20.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify clear values for the color buffers @@ -4302,7 +4302,7 @@ namespace OpenTK.Graphics.ES20 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the depth buffer @@ -4311,7 +4311,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the stencil buffer @@ -4320,7 +4320,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable and disable writing of frame buffer color components @@ -4338,7 +4338,7 @@ namespace OpenTK.Graphics.ES20 /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compile a shader object @@ -4348,7 +4348,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(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compile a shader object @@ -4358,7 +4358,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4389,7 +4389,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4423,7 +4423,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4457,7 +4457,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4491,7 +4491,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4524,7 +4524,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4555,7 +4555,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4589,7 +4589,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4623,7 +4623,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4657,7 +4657,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4690,7 +4690,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4720,7 +4720,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4753,7 +4753,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4786,7 +4786,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4819,7 +4819,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4851,7 +4851,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -4885,7 +4885,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -4922,7 +4922,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -4959,7 +4959,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -4996,7 +4996,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5032,7 +5032,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5066,7 +5066,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5103,7 +5103,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5140,7 +5140,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5177,7 +5177,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5213,7 +5213,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5246,7 +5246,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5282,7 +5282,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5318,7 +5318,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5354,7 +5354,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5389,7 +5389,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -5420,7 +5420,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -5451,7 +5451,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d and TextureCopyComponentCount overloads instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -5481,7 +5481,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -5512,7 +5512,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -5543,7 +5543,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -5573,13 +5573,13 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create a program object /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create a shader object @@ -5589,7 +5589,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES20.All type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES20.All type) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create a shader object @@ -5598,7 +5598,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the type of shader to be created. Must be either VertexShader or FragmentShader. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES20.ShaderType type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES20.ShaderType type) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -5608,7 +5608,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -5617,7 +5617,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES20.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES20.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5629,7 +5629,7 @@ namespace OpenTK.Graphics.ES20 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5644,7 +5644,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5659,7 +5659,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5674,7 +5674,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -5688,7 +5688,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5714,7 +5714,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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5740,7 +5740,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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5766,7 +5766,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5792,7 +5792,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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5818,7 +5818,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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5844,7 +5844,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5869,7 +5869,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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5894,7 +5894,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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5919,7 +5919,7 @@ namespace OpenTK.Graphics.ES20 /// [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5944,7 +5944,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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5969,7 +5969,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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -5994,7 +5994,7 @@ namespace OpenTK.Graphics.ES20 /// [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES20.DebugSourceControl source, OpenTK.Graphics.ES20.DebugTypeControl type, OpenTK.Graphics.ES20.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6020,7 +6020,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, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6046,7 +6046,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, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6071,7 +6071,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, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, Int32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6096,7 +6096,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, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6106,7 +6106,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6116,7 +6116,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6129,7 +6129,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6142,7 +6142,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6155,7 +6155,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6168,7 +6168,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6181,7 +6181,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6194,7 +6194,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6204,7 +6204,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6214,7 +6214,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6227,7 +6227,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6240,7 +6240,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6253,7 +6253,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6266,7 +6266,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6279,7 +6279,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named framebuffer objects @@ -6292,7 +6292,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete a program object @@ -6302,7 +6302,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(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete a program object @@ -6312,7 +6312,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6322,7 +6322,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6332,7 +6332,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6345,7 +6345,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6358,7 +6358,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6371,7 +6371,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6384,7 +6384,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6397,7 +6397,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named renderbuffer objects @@ -6410,7 +6410,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete a shader object @@ -6420,7 +6420,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(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete a shader object @@ -6430,7 +6430,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6440,7 +6440,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6450,7 +6450,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6463,7 +6463,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6476,7 +6476,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6489,7 +6489,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6502,7 +6502,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6515,7 +6515,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -6528,7 +6528,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -6538,7 +6538,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES20.All func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES20.All func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -6547,7 +6547,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable writing into the depth buffer @@ -6556,7 +6556,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -6568,7 +6568,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detach a shader object from a program object @@ -6581,7 +6581,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(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detach a shader object from a program object @@ -6594,30 +6594,30 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES20.All cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES20.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6633,7 +6633,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6649,7 +6649,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES20.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES20.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6664,7 +6664,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6683,7 +6683,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6705,7 +6705,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6727,7 +6727,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6749,7 +6749,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6770,7 +6770,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6789,7 +6789,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6811,7 +6811,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6833,7 +6833,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6855,7 +6855,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6876,7 +6876,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6894,7 +6894,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6915,7 +6915,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6936,7 +6936,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6957,7 +6957,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -6977,7 +6977,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -6987,7 +6987,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES20.All cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -6996,7 +6996,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES20.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -7006,7 +7006,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(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -7016,19 +7016,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7048,7 +7048,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7068,7 +7068,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7087,7 +7087,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7106,7 +7106,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7126,7 +7126,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer object to a framebuffer object @@ -7146,7 +7146,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7169,7 +7169,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7192,7 +7192,7 @@ namespace OpenTK.Graphics.ES20 [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, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7215,7 +7215,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7238,7 +7238,7 @@ namespace OpenTK.Graphics.ES20 [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, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7260,7 +7260,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7282,7 +7282,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7305,7 +7305,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a texture image to a framebuffer object @@ -7328,7 +7328,7 @@ namespace OpenTK.Graphics.ES20 [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, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -7338,7 +7338,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -7347,14 +7347,14 @@ namespace OpenTK.Graphics.ES20 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES20.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES20.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7367,7 +7367,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, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7380,7 +7380,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, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7393,7 +7393,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7406,7 +7406,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, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7419,7 +7419,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, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -7432,7 +7432,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate a complete set of mipmaps for a texture object @@ -7442,7 +7442,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate a complete set of mipmaps for a texture object @@ -7451,14 +7451,14 @@ namespace OpenTK.Graphics.ES20 /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES20.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES20.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7471,7 +7471,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, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7484,7 +7484,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, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7497,7 +7497,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7510,7 +7510,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, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7523,7 +7523,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, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -7536,14 +7536,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7556,7 +7556,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, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7569,7 +7569,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, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7582,7 +7582,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7595,7 +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, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7608,7 +7608,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, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -7621,14 +7621,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7641,7 +7641,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, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7654,7 +7654,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, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7667,7 +7667,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7680,7 +7680,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, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7693,7 +7693,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, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -7706,7 +7706,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7734,7 +7734,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7763,7 +7763,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7791,7 +7791,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7820,7 +7820,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 unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7848,7 +7848,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7877,7 +7877,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(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7905,7 +7905,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active attribute variable @@ -7934,7 +7934,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 unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -7962,7 +7962,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -7991,7 +7991,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8019,7 +8019,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8048,7 +8048,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 unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8076,7 +8076,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8105,7 +8105,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(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8133,7 +8133,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return information about an active uniform variable @@ -8162,7 +8162,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 unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8181,7 +8181,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, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8200,7 +8200,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, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8219,7 +8219,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8238,7 +8238,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8257,7 +8257,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the handles of the shader objects attached to a program object @@ -8276,7 +8276,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the location of an attribute variable @@ -8289,7 +8289,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(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the location of an attribute variable @@ -8302,20 +8302,20 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static bool GetBoolean(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static bool GetBoolean(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8323,7 +8323,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8331,7 +8331,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8339,28 +8339,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8377,7 +8377,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8394,7 +8394,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8411,7 +8411,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 unsafe void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8427,7 +8427,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8443,7 +8443,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -8459,7 +8459,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8491,7 +8491,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, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8523,7 +8523,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, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8555,7 +8555,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8586,7 +8586,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8617,7 +8617,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8648,7 +8648,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8680,7 +8680,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8712,7 +8712,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8744,7 +8744,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8775,7 +8775,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8806,7 +8806,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -8837,26 +8837,26 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return error information /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.ES20.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static Single GetFloat(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static Single GetFloat(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8864,7 +8864,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8872,7 +8872,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -8880,28 +8880,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8921,7 +8921,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8941,7 +8941,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8961,7 +8961,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 unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8980,7 +8980,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -8999,7 +8999,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9018,7 +9018,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9038,7 +9038,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9058,7 +9058,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return attachment parameters of a framebuffer object @@ -9078,24 +9078,24 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use FramebufferAttachment overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.ES20.ResetStatus GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.ResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static Int32 GetInteger(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static Int32 GetInteger(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -9103,7 +9103,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -9111,7 +9111,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -9119,28 +9119,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// /// @@ -9149,7 +9149,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9158,7 +9158,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9167,7 +9167,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9176,7 +9176,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9185,7 +9185,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9194,7 +9194,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9203,7 +9203,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9212,7 +9212,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9221,7 +9221,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9230,7 +9230,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9239,7 +9239,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9248,7 +9248,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9257,7 +9257,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9266,7 +9266,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -9275,7 +9275,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9298,7 +9298,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9321,7 +9321,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9344,7 +9344,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9367,7 +9367,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, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9390,7 +9390,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, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9413,7 +9413,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9435,7 +9435,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9457,7 +9457,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9479,7 +9479,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9501,7 +9501,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9523,7 +9523,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -9545,7 +9545,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9565,7 +9565,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9585,7 +9585,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9605,7 +9605,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9627,7 +9627,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9649,7 +9649,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9671,7 +9671,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9693,7 +9693,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9715,7 +9715,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9737,7 +9737,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9759,7 +9759,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9781,7 +9781,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9803,7 +9803,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9825,7 +9825,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9847,7 +9847,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -9869,7 +9869,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9882,7 +9882,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9898,7 +9898,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9914,7 +9914,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9930,7 +9930,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9945,7 +9945,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9957,7 +9957,7 @@ namespace OpenTK.Graphics.ES20 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9972,7 +9972,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -9987,7 +9987,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -10002,7 +10002,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -10016,7 +10016,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES20.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a program object @@ -10035,7 +10035,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a program object @@ -10054,7 +10054,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a program object @@ -10073,7 +10073,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a program object @@ -10092,7 +10092,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10109,7 +10109,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10126,7 +10126,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10143,7 +10143,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 unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10159,7 +10159,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10175,7 +10175,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10191,7 +10191,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10208,7 +10208,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10225,7 +10225,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10242,7 +10242,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 unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10259,7 +10259,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(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10276,7 +10276,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(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10293,7 +10293,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 unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10309,7 +10309,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10325,7 +10325,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10341,7 +10341,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10358,7 +10358,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(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10375,7 +10375,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(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a program object @@ -10392,7 +10392,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 unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES20.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10409,7 +10409,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10426,7 +10426,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10443,7 +10443,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 unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10459,7 +10459,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10475,7 +10475,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a renderbuffer object @@ -10491,7 +10491,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a shader object @@ -10510,7 +10510,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a shader object @@ -10529,7 +10529,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a shader object @@ -10548,7 +10548,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the information log for a shader object @@ -10567,7 +10567,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10584,7 +10584,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10601,7 +10601,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10618,7 +10618,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 unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10634,7 +10634,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10650,7 +10650,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10666,7 +10666,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10683,7 +10683,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(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10700,7 +10700,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(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10717,7 +10717,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 unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10733,7 +10733,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10749,7 +10749,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a parameter from a shader object @@ -10765,7 +10765,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES20.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10785,7 +10785,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, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10805,7 +10805,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, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10825,7 +10825,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 unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.All shadertype, OpenTK.Graphics.ES20.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10844,7 +10844,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, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10863,7 +10863,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, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the range and precision for different shader numeric formats @@ -10882,7 +10882,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES20.ShaderType shadertype, OpenTK.Graphics.ES20.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the source code string from a shader object @@ -10901,7 +10901,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the source code string from a shader object @@ -10920,7 +10920,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the source code string from a shader object @@ -10939,7 +10939,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the source code string from a shader object @@ -10958,7 +10958,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -10968,7 +10968,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES20.All name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES20.All name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -10977,7 +10977,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant, one of Vendor, Renderer, Version, ShadingLanguageVersion, or Extensions. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES20.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES20.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -10994,7 +10994,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11011,7 +11011,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11028,7 +11028,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 unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11045,7 +11045,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11062,7 +11062,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11079,7 +11079,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 unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11095,7 +11095,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11111,7 +11111,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11127,7 +11127,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11144,7 +11144,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11161,7 +11161,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11178,7 +11178,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 unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11195,7 +11195,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11212,7 +11212,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11229,7 +11229,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 unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11245,7 +11245,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11261,7 +11261,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -11277,7 +11277,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11293,7 +11293,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, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11309,7 +11309,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, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11325,7 +11325,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11341,7 +11341,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11357,7 +11357,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11373,7 +11373,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11389,7 +11389,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, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11405,7 +11405,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, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11421,7 +11421,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11437,7 +11437,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11453,7 +11453,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the value of a uniform variable @@ -11469,7 +11469,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the location of a uniform variable @@ -11482,7 +11482,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(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the location of a uniform variable @@ -11495,7 +11495,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11512,7 +11512,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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11529,7 +11529,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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11546,7 +11546,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 unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11562,7 +11562,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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11578,7 +11578,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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11594,7 +11594,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11611,7 +11611,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(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11628,7 +11628,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(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11645,7 +11645,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 unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11661,7 +11661,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11677,7 +11677,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11693,7 +11693,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11710,7 +11710,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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11727,7 +11727,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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11744,7 +11744,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 unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11760,7 +11760,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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11776,7 +11776,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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11792,7 +11792,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11809,7 +11809,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(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11826,7 +11826,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(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11843,7 +11843,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 unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11859,7 +11859,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11875,7 +11875,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -11891,7 +11891,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES20.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11908,7 +11908,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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11927,7 +11927,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11946,7 +11946,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11965,7 +11965,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -11984,7 +11984,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12000,7 +12000,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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12018,7 +12018,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12036,7 +12036,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12054,7 +12054,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12072,7 +12072,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12089,7 +12089,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(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12108,7 +12108,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12127,7 +12127,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12146,7 +12146,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12165,7 +12165,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12181,7 +12181,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12199,7 +12199,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12217,7 +12217,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12235,7 +12235,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -12253,7 +12253,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES20.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -12266,7 +12266,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -12278,7 +12278,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES20.HintTarget target, OpenTK.Graphics.ES20.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES20.HintTarget target, OpenTK.Graphics.ES20.HintMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -12288,7 +12288,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(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -12298,7 +12298,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -12308,7 +12308,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES20.All cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -12317,7 +12317,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -12327,7 +12327,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(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -12337,7 +12337,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a program object @@ -12347,7 +12347,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(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a program object @@ -12357,7 +12357,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -12367,7 +12367,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(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -12377,7 +12377,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a shader object @@ -12387,7 +12387,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(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a shader object @@ -12397,7 +12397,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -12407,7 +12407,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(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -12417,7 +12417,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the width of rasterized lines @@ -12426,7 +12426,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Link a program object @@ -12436,7 +12436,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(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Link a program object @@ -12446,7 +12446,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -12466,7 +12466,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, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -12486,7 +12486,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, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -12505,7 +12505,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, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -12524,7 +12524,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12539,7 +12539,7 @@ namespace OpenTK.Graphics.ES20 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12557,7 +12557,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12575,7 +12575,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12593,7 +12593,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -12610,7 +12610,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -12623,7 +12623,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES20.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES20.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -12635,7 +12635,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES20.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES20.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the scale and units used to calculate depth values @@ -12647,13 +12647,13 @@ namespace OpenTK.Graphics.ES20 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -12672,7 +12672,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, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -12691,7 +12691,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// /// @@ -12704,7 +12704,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -12720,7 +12720,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12736,7 +12736,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12752,7 +12752,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12767,7 +12767,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] 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] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12779,7 +12779,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -12794,7 +12794,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12809,7 +12809,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12824,7 +12824,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -12838,7 +12838,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12866,7 +12866,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12897,7 +12897,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12928,7 +12928,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12959,7 +12959,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -12989,7 +12989,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13016,7 +13016,7 @@ namespace OpenTK.Graphics.ES20 /// Returns the pixel data. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13046,7 +13046,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13076,7 +13076,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13106,7 +13106,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -13135,13 +13135,13 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Release resources allocated by the shader compiler /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a renderbuffer object's data store @@ -13160,7 +13160,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Create and initialize a renderbuffer object's data store @@ -13178,7 +13178,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer in pixels. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES20.RenderbufferTarget target, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify multisample coverage parameters @@ -13190,7 +13190,7 @@ namespace OpenTK.Graphics.ES20 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define the scissor box @@ -13208,7 +13208,7 @@ namespace OpenTK.Graphics.ES20 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13231,7 +13231,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, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13256,7 +13256,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13281,7 +13281,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13306,7 +13306,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13331,7 +13331,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13353,7 +13353,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13377,7 +13377,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13401,7 +13401,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13425,7 +13425,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13449,7 +13449,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13472,7 +13472,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, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13497,7 +13497,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13522,7 +13522,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13547,7 +13547,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13572,7 +13572,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13594,7 +13594,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13618,7 +13618,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13642,7 +13642,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13666,7 +13666,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13690,7 +13690,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13713,7 +13713,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 unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13738,7 +13738,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13763,7 +13763,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13788,7 +13788,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13813,7 +13813,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13835,7 +13835,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13859,7 +13859,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13883,7 +13883,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13907,7 +13907,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13931,7 +13931,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13954,7 +13954,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, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -13979,7 +13979,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14004,7 +14004,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14029,7 +14029,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14054,7 +14054,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14076,7 +14076,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14100,7 +14100,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14124,7 +14124,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14148,7 +14148,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14172,7 +14172,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14195,7 +14195,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, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14220,7 +14220,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14245,7 +14245,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14270,7 +14270,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14295,7 +14295,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14317,7 +14317,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14341,7 +14341,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14365,7 +14365,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14389,7 +14389,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14413,7 +14413,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14436,7 +14436,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 unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14461,7 +14461,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14486,7 +14486,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14511,7 +14511,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14536,7 +14536,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14558,7 +14558,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14582,7 +14582,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14606,7 +14606,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14630,7 +14630,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load a precompiled shader binary @@ -14654,7 +14654,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES20.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14673,7 +14673,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, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14692,7 +14692,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, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14711,7 +14711,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14730,7 +14730,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14749,7 +14749,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replace the source code in a shader object @@ -14768,7 +14768,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -14785,7 +14785,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(); } + public static void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -14802,7 +14802,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -14818,7 +14818,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(); } + public static void StencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -14834,7 +14834,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14854,7 +14854,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(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14874,7 +14874,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14894,7 +14894,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(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14914,7 +14914,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14933,7 +14933,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(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -14952,7 +14952,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -14962,7 +14962,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(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -14972,7 +14972,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -14986,7 +14986,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(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15000,7 +15000,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15014,7 +15014,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(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.CullFaceMode face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15028,7 +15028,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.CullFaceMode face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15041,7 +15041,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(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.StencilFace face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -15054,7 +15054,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES20.StencilFace face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -15070,7 +15070,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES20.All fail, OpenTK.Graphics.ES20.All zfail, OpenTK.Graphics.ES20.All zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES20.All fail, OpenTK.Graphics.ES20.All zfail, OpenTK.Graphics.ES20.All zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -15085,7 +15085,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES20.StencilOp fail, OpenTK.Graphics.ES20.StencilOp zfail, OpenTK.Graphics.ES20.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES20.StencilOp fail, OpenTK.Graphics.ES20.StencilOp zfail, OpenTK.Graphics.ES20.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -15104,7 +15104,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All sfail, OpenTK.Graphics.ES20.All dpfail, OpenTK.Graphics.ES20.All dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All sfail, OpenTK.Graphics.ES20.All dpfail, OpenTK.Graphics.ES20.All dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -15123,7 +15123,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilOp sfail, OpenTK.Graphics.ES20.StencilOp dpfail, OpenTK.Graphics.ES20.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES20.CullFaceMode face, OpenTK.Graphics.ES20.StencilOp sfail, OpenTK.Graphics.ES20.StencilOp dpfail, OpenTK.Graphics.ES20.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -15141,7 +15141,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilOp sfail, OpenTK.Graphics.ES20.StencilOp dpfail, OpenTK.Graphics.ES20.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES20.StencilFace face, OpenTK.Graphics.ES20.StencilOp sfail, OpenTK.Graphics.ES20.StencilOp dpfail, OpenTK.Graphics.ES20.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15175,7 +15175,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15212,7 +15212,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15249,7 +15249,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15286,7 +15286,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15322,7 +15322,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15356,7 +15356,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15393,7 +15393,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15430,7 +15430,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15467,7 +15467,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15503,7 +15503,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15536,7 +15536,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15572,7 +15572,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15608,7 +15608,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15644,7 +15644,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -15679,7 +15679,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15695,7 +15695,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15710,7 +15710,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15727,7 +15727,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15744,7 +15744,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 unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15760,7 +15760,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15776,7 +15776,7 @@ namespace OpenTK.Graphics.ES20 /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15792,7 +15792,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15807,7 +15807,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15824,7 +15824,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15841,7 +15841,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 unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15857,7 +15857,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -15873,7 +15873,7 @@ namespace OpenTK.Graphics.ES20 /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -15907,7 +15907,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -15944,7 +15944,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -15981,7 +15981,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16018,7 +16018,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16054,7 +16054,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16088,7 +16088,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use TextureTarget2d overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16125,7 +16125,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16162,7 +16162,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16199,7 +16199,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16235,7 +16235,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16268,7 +16268,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16304,7 +16304,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16340,7 +16340,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16376,7 +16376,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -16411,7 +16411,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16423,7 +16423,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16439,7 +16439,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, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16455,7 +16455,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, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16471,7 +16471,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16483,7 +16483,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16499,7 +16499,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, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16515,7 +16515,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, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16531,7 +16531,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16546,7 +16546,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16562,7 +16562,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16578,7 +16578,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16594,7 +16594,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16609,7 +16609,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16625,7 +16625,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16641,7 +16641,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16659,7 +16659,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16675,7 +16675,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16691,7 +16691,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16707,7 +16707,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16725,7 +16725,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16741,7 +16741,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16757,7 +16757,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16773,7 +16773,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16794,7 +16794,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16810,7 +16810,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16826,7 +16826,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16842,7 +16842,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16863,7 +16863,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16879,7 +16879,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16895,7 +16895,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -16911,7 +16911,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16920,7 +16920,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16929,7 +16929,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16938,7 +16938,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16947,7 +16947,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16956,7 +16956,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16965,7 +16965,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16974,7 +16974,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16983,7 +16983,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -16992,7 +16992,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Install a program object as part of current rendering state @@ -17002,7 +17002,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(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Install a program object as part of current rendering state @@ -17012,7 +17012,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validate a program object @@ -17022,7 +17022,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(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validate a program object @@ -17032,7 +17032,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17045,7 +17045,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(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17058,7 +17058,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17071,7 +17071,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17084,7 +17084,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17097,7 +17097,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17110,7 +17110,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17126,7 +17126,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(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17142,7 +17142,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17155,7 +17155,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17168,7 +17168,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17181,7 +17181,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17194,7 +17194,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17207,7 +17207,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17220,7 +17220,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17239,7 +17239,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(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17258,7 +17258,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17271,7 +17271,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17284,7 +17284,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17297,7 +17297,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17310,7 +17310,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17323,7 +17323,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17336,7 +17336,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17358,7 +17358,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(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17380,7 +17380,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17393,7 +17393,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17406,7 +17406,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17419,7 +17419,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17432,7 +17432,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17445,7 +17445,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a generic vertex attribute @@ -17458,7 +17458,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17484,7 +17484,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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17512,7 +17512,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17540,7 +17540,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17568,7 +17568,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17596,7 +17596,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17621,7 +17621,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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17648,7 +17648,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17675,7 +17675,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17702,7 +17702,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17729,7 +17729,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17755,7 +17755,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(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17783,7 +17783,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17811,7 +17811,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17839,7 +17839,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17867,7 +17867,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17892,7 +17892,7 @@ namespace OpenTK.Graphics.ES20 /// [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17919,7 +17919,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17946,7 +17946,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -17973,7 +17973,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -18000,7 +18000,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES20.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the viewport @@ -18018,7 +18018,7 @@ namespace OpenTK.Graphics.ES20 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -18028,7 +18028,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// @@ -18036,19 +18036,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -18061,7 +18061,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(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -18074,7 +18074,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -18088,7 +18088,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(); } + public static void BeginQuery(OpenTK.Graphics.ES20.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -18102,7 +18102,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, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES20.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -18115,7 +18115,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(); } + public static void BeginQuery(OpenTK.Graphics.ES20.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -18128,7 +18128,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, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES20.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -18144,7 +18144,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -18160,7 +18160,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -18179,7 +18179,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -18198,7 +18198,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -18208,7 +18208,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(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -18218,7 +18218,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18228,7 +18228,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18237,7 +18237,7 @@ namespace OpenTK.Graphics.ES20 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18251,7 +18251,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18264,7 +18264,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18278,7 +18278,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -18291,7 +18291,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -18308,7 +18308,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -18324,7 +18324,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -18341,7 +18341,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -18357,7 +18357,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -18371,7 +18371,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -18385,7 +18385,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -18407,7 +18407,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -18429,7 +18429,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18448,7 +18448,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18467,7 +18467,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18488,7 +18488,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18509,7 +18509,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18530,7 +18530,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18551,7 +18551,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18572,7 +18572,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18593,7 +18593,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18614,7 +18614,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18635,7 +18635,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18654,7 +18654,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18673,7 +18673,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18694,7 +18694,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18715,7 +18715,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18736,7 +18736,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18757,7 +18757,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18778,7 +18778,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18799,7 +18799,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18820,7 +18820,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -18841,7 +18841,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES20.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18851,7 +18851,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18861,7 +18861,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18871,7 +18871,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -18881,7 +18881,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18891,7 +18891,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18901,7 +18901,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18911,7 +18911,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18921,7 +18921,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18930,7 +18930,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18939,7 +18939,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18948,7 +18948,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -18957,7 +18957,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES20.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18965,7 +18965,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18973,7 +18973,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18981,7 +18981,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18989,7 +18989,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -18997,7 +18997,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -19005,7 +19005,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19027,7 +19027,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19051,7 +19051,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19075,7 +19075,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19099,7 +19099,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19123,7 +19123,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19145,7 +19145,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19169,7 +19169,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19193,7 +19193,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19217,7 +19217,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -19241,7 +19241,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19281,7 +19281,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19323,7 +19323,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, 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, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19365,7 +19365,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, 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, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19407,7 +19407,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, 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, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19449,7 +19449,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, 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, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19489,7 +19489,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19531,7 +19531,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, 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, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19573,7 +19573,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, 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, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19615,7 +19615,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, 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, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -19657,7 +19657,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, 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, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -19677,7 +19677,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -19697,7 +19697,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -19749,7 +19749,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -19801,49 +19801,49 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -19855,7 +19855,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -19870,61 +19870,61 @@ namespace OpenTK.Graphics.ES20 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES20.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19934,7 +19934,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19944,7 +19944,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19957,7 +19957,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19970,7 +19970,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19983,7 +19983,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -19996,7 +19996,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -20009,7 +20009,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -20022,7 +20022,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20032,7 +20032,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20042,7 +20042,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20055,7 +20055,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, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20068,7 +20068,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, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20081,7 +20081,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20094,7 +20094,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, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20107,7 +20107,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, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -20120,75 +20120,75 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -20196,7 +20196,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES20.All[] attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES20.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -20204,7 +20204,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES20.All attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES20.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -20212,7 +20212,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES20.All* attachments) { throw new NotImplementedException(); } + public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES20.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES20.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -20235,7 +20235,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -20258,7 +20258,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -20280,7 +20280,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -20302,7 +20302,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -20321,7 +20321,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -20339,7 +20339,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20353,7 +20353,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(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20367,7 +20367,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(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20381,7 +20381,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20394,7 +20394,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(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20407,7 +20407,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(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -20420,7 +20420,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -20428,7 +20428,7 @@ namespace OpenTK.Graphics.ES20 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -20436,7 +20436,7 @@ namespace OpenTK.Graphics.ES20 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -20444,7 +20444,7 @@ namespace OpenTK.Graphics.ES20 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20466,7 +20466,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20491,7 +20491,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20516,7 +20516,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20541,7 +20541,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20565,7 +20565,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20586,7 +20586,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20610,7 +20610,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20634,7 +20634,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20658,7 +20658,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -20681,7 +20681,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20707,7 +20707,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20733,7 +20733,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20761,7 +20761,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20789,7 +20789,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20817,7 +20817,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20845,7 +20845,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20873,7 +20873,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20901,7 +20901,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20929,7 +20929,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20957,7 +20957,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -20982,7 +20982,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21007,7 +21007,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21034,7 +21034,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21061,7 +21061,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21088,7 +21088,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21115,7 +21115,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21142,7 +21142,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21169,7 +21169,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21196,7 +21196,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -21223,7 +21223,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21252,7 +21252,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21281,7 +21281,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21312,7 +21312,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21343,7 +21343,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21374,7 +21374,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21405,7 +21405,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21436,7 +21436,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21467,7 +21467,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21498,7 +21498,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21529,7 +21529,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21557,7 +21557,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21585,7 +21585,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21615,7 +21615,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21645,7 +21645,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21675,7 +21675,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21705,7 +21705,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21735,7 +21735,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21765,7 +21765,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21795,7 +21795,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21825,7 +21825,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21850,7 +21850,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21878,7 +21878,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21906,7 +21906,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21934,7 +21934,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21961,7 +21961,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -21985,7 +21985,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -22012,7 +22012,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -22039,7 +22039,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -22066,7 +22066,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -22092,7 +22092,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22114,7 +22114,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22139,7 +22139,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22164,7 +22164,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22189,7 +22189,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22213,7 +22213,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22234,7 +22234,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22258,7 +22258,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22282,7 +22282,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22306,7 +22306,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -22329,7 +22329,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22358,7 +22358,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22389,7 +22389,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22420,7 +22420,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22451,7 +22451,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22482,7 +22482,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22511,7 +22511,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22542,7 +22542,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22573,7 +22573,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22604,7 +22604,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22635,7 +22635,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22663,7 +22663,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22693,7 +22693,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22723,7 +22723,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22753,7 +22753,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22783,7 +22783,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22811,7 +22811,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22841,7 +22841,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22871,7 +22871,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22901,7 +22901,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -22931,7 +22931,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -22945,7 +22945,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES20.All mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES20.All mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -22959,7 +22959,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES20.All mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES20.All mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -22972,7 +22972,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -22985,7 +22985,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -23002,7 +23002,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.All mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.All mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -23019,7 +23019,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.All mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.All mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -23035,7 +23035,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -23051,7 +23051,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -23062,7 +23062,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -23073,18 +23073,18 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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 = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES20.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES20.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -23100,7 +23100,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -23116,7 +23116,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -23131,7 +23131,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -23146,21 +23146,21 @@ namespace OpenTK.Graphics.ES20 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -23171,7 +23171,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -23182,7 +23182,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23202,7 +23202,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23222,7 +23222,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23241,7 +23241,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -23260,14 +23260,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23280,7 +23280,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23293,7 +23293,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23306,7 +23306,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23319,7 +23319,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23332,7 +23332,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -23345,14 +23345,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23365,7 +23365,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, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23378,7 +23378,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, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23391,7 +23391,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23404,7 +23404,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, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23417,7 +23417,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, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -23430,54 +23430,54 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static Int32 GenSemaphore() { throw new NotImplementedException(); } + public static Int32 GenSemaphore() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -23490,7 +23490,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -23503,23 +23503,23 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23528,7 +23528,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + public static void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23537,7 +23537,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + public static void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23546,7 +23546,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23555,7 +23555,7 @@ namespace OpenTK.Graphics.ES20 [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, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23564,7 +23564,7 @@ namespace OpenTK.Graphics.ES20 [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, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23573,7 +23573,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23581,7 +23581,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23589,7 +23589,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23597,7 +23597,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23605,7 +23605,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23613,7 +23613,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -23621,7 +23621,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES20.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23630,7 +23630,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23639,7 +23639,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23648,7 +23648,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23656,7 +23656,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23664,7 +23664,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23672,7 +23672,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23681,7 +23681,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23690,7 +23690,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23699,7 +23699,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23707,7 +23707,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23715,7 +23715,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -23723,7 +23723,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23732,7 +23732,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23741,7 +23741,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23750,7 +23750,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23759,7 +23759,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23768,7 +23768,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23777,7 +23777,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23786,7 +23786,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23795,7 +23795,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23804,7 +23804,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23813,7 +23813,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23822,7 +23822,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -23831,7 +23831,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23853,7 +23853,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23875,7 +23875,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23897,7 +23897,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23919,7 +23919,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23941,7 +23941,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -23963,7 +23963,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -23983,7 +23983,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24003,7 +24003,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24023,7 +24023,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24043,7 +24043,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24063,7 +24063,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -24083,7 +24083,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24099,7 +24099,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(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24115,7 +24115,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(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24131,7 +24131,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24147,7 +24147,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24163,7 +24163,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -24179,7 +24179,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -24195,7 +24195,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -24211,7 +24211,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES20.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24220,7 +24220,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + public static void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24229,7 +24229,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + public static void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24238,7 +24238,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24246,7 +24246,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24254,7 +24254,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -24262,7 +24262,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES20.QueryTarget target, OpenTK.Graphics.ES20.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24279,7 +24279,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24296,7 +24296,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24313,7 +24313,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24329,7 +24329,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24345,7 +24345,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24361,7 +24361,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24378,7 +24378,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(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24395,7 +24395,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(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24412,7 +24412,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24428,7 +24428,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24444,7 +24444,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24460,7 +24460,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24477,7 +24477,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(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24494,7 +24494,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(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24511,7 +24511,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24527,7 +24527,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(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24543,7 +24543,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(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24559,7 +24559,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24576,7 +24576,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(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24593,7 +24593,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(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24610,7 +24610,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24626,7 +24626,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24642,7 +24642,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24658,7 +24658,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24675,7 +24675,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24692,7 +24692,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24709,7 +24709,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24725,7 +24725,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24741,7 +24741,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -24757,7 +24757,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24774,7 +24774,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24791,7 +24791,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24808,7 +24808,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24824,7 +24824,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24840,7 +24840,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -24856,7 +24856,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES20.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24864,7 +24864,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24872,7 +24872,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24880,7 +24880,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24888,7 +24888,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24896,7 +24896,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24904,7 +24904,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24912,7 +24912,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24920,7 +24920,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -24928,7 +24928,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24937,7 +24937,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24946,7 +24946,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24955,7 +24955,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24963,7 +24963,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24971,7 +24971,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24979,7 +24979,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24988,7 +24988,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -24997,7 +24997,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -25006,7 +25006,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -25014,7 +25014,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -25022,7 +25022,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -25030,7 +25030,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25039,7 +25039,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25048,7 +25048,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25057,7 +25057,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25065,7 +25065,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25073,7 +25073,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25081,7 +25081,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25090,7 +25090,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25099,7 +25099,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25108,7 +25108,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25116,7 +25116,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25124,7 +25124,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -25132,7 +25132,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25140,7 +25140,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25148,7 +25148,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25156,7 +25156,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25164,7 +25164,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25172,7 +25172,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25180,20 +25180,20 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES20.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25201,7 +25201,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25209,7 +25209,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -25217,28 +25217,28 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -25248,7 +25248,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -25257,7 +25257,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -25267,7 +25267,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -25276,7 +25276,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25286,7 +25286,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25298,7 +25298,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25310,7 +25310,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25322,7 +25322,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25334,7 +25334,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25343,7 +25343,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25354,7 +25354,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25365,7 +25365,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25376,7 +25376,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25387,7 +25387,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25397,7 +25397,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25409,7 +25409,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25421,7 +25421,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25433,7 +25433,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25445,7 +25445,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25454,7 +25454,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25465,7 +25465,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25476,7 +25476,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25487,7 +25487,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25498,7 +25498,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25508,7 +25508,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25520,7 +25520,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25532,7 +25532,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25544,7 +25544,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25556,7 +25556,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25565,7 +25565,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25576,7 +25576,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25587,7 +25587,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25598,7 +25598,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25609,7 +25609,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25619,7 +25619,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25631,7 +25631,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25643,7 +25643,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25655,7 +25655,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25667,7 +25667,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25676,7 +25676,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25687,7 +25687,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25698,7 +25698,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25709,7 +25709,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -25720,7 +25720,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -25729,7 +25729,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -25737,7 +25737,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -25746,7 +25746,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -25754,7 +25754,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25763,7 +25763,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25774,7 +25774,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25785,7 +25785,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25796,7 +25796,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25807,7 +25807,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25815,7 +25815,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25825,7 +25825,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25835,7 +25835,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25845,7 +25845,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25855,7 +25855,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25864,7 +25864,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25875,7 +25875,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25886,7 +25886,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25897,7 +25897,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25908,7 +25908,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25916,7 +25916,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25926,7 +25926,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25936,7 +25936,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25946,7 +25946,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25956,7 +25956,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25965,7 +25965,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25976,7 +25976,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25987,7 +25987,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -25998,7 +25998,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26009,7 +26009,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26017,7 +26017,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26027,7 +26027,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26037,7 +26037,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26047,7 +26047,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26057,7 +26057,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26066,7 +26066,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26077,7 +26077,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26088,7 +26088,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26099,7 +26099,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26110,7 +26110,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26118,7 +26118,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26128,7 +26128,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26138,7 +26138,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26148,7 +26148,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -26158,13 +26158,13 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES20.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -26175,7 +26175,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -26186,19 +26186,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(Int32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(Int32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(UInt32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(UInt32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -26208,7 +26208,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(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -26218,7 +26218,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -26228,7 +26228,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(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -26238,19 +26238,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(Int32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(Int32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(UInt32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(UInt32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -26259,7 +26259,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void LabelObject(OpenTK.Graphics.ES20.All type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -26268,7 +26268,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void LabelObject(OpenTK.Graphics.ES20.All type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26288,7 +26288,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, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26308,7 +26308,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, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26328,7 +26328,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(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26348,7 +26348,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, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26367,7 +26367,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, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26386,7 +26386,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, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26405,7 +26405,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(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -26424,7 +26424,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, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26433,7 +26433,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26442,7 +26442,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26451,7 +26451,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26459,7 +26459,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26467,7 +26467,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26475,7 +26475,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26484,7 +26484,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26493,7 +26493,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26502,7 +26502,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26510,7 +26510,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26518,7 +26518,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26526,7 +26526,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES20.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26546,7 +26546,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, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26566,7 +26566,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, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26586,7 +26586,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26605,7 +26605,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, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26624,7 +26624,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, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -26643,7 +26643,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26662,7 +26662,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26684,7 +26684,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26706,7 +26706,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26728,7 +26728,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26749,7 +26749,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26767,7 +26767,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26788,7 +26788,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26809,7 +26809,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26830,7 +26830,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -26850,7 +26850,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26876,7 +26876,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26904,7 +26904,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26932,7 +26932,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26960,7 +26960,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -26988,7 +26988,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27014,7 +27014,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27042,7 +27042,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27070,7 +27070,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27098,7 +27098,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27126,7 +27126,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27152,7 +27152,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27180,7 +27180,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27208,7 +27208,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27236,7 +27236,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27264,7 +27264,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27289,7 +27289,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27316,7 +27316,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27343,7 +27343,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27370,7 +27370,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27397,7 +27397,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27422,7 +27422,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27449,7 +27449,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27476,7 +27476,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27503,7 +27503,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27530,7 +27530,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27555,7 +27555,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27582,7 +27582,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27609,7 +27609,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27636,7 +27636,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -27663,7 +27663,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27686,7 +27686,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, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27711,7 +27711,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27736,7 +27736,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27761,7 +27761,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27786,7 +27786,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27809,7 +27809,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, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27834,7 +27834,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27859,7 +27859,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27884,7 +27884,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27909,7 +27909,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27932,7 +27932,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27957,7 +27957,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -27982,7 +27982,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28007,7 +28007,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28032,7 +28032,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28054,7 +28054,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, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28078,7 +28078,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28102,7 +28102,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28126,7 +28126,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28150,7 +28150,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28172,7 +28172,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, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28196,7 +28196,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28220,7 +28220,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28244,7 +28244,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28268,7 +28268,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28290,7 +28290,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28314,7 +28314,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28338,7 +28338,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28362,7 +28362,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -28386,7 +28386,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28408,7 +28408,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28433,7 +28433,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28458,7 +28458,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28483,7 +28483,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28507,7 +28507,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.All mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28528,7 +28528,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28552,7 +28552,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28576,7 +28576,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28600,7 +28600,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -28623,7 +28623,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES20.PrimitiveType mode, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28633,7 +28633,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28643,7 +28643,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28653,7 +28653,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -28663,7 +28663,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28672,7 +28672,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28681,7 +28681,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28690,7 +28690,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -28699,7 +28699,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_tessellation_shader] /// Specifies the parameters for patch primitives @@ -28711,18 +28711,18 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] - public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_primitive_bounding_box] /// @@ -28734,7 +28734,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxEXT")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -28751,7 +28751,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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -28767,7 +28767,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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -28784,7 +28784,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(UInt32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -28800,7 +28800,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES20.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28816,7 +28816,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28832,7 +28832,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28851,7 +28851,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, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28870,7 +28870,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, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28889,7 +28889,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28908,7 +28908,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28927,7 +28927,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28946,7 +28946,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28962,7 +28962,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28978,7 +28978,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -28997,7 +28997,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, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29016,7 +29016,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, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29035,7 +29035,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29054,7 +29054,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29073,7 +29073,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29092,7 +29092,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29108,7 +29108,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29127,7 +29127,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29146,7 +29146,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29165,7 +29165,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29184,7 +29184,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29203,7 +29203,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29222,7 +29222,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29241,7 +29241,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29260,7 +29260,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29279,7 +29279,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29298,7 +29298,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29317,7 +29317,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29336,7 +29336,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29355,7 +29355,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29374,7 +29374,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29393,7 +29393,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29412,7 +29412,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29431,7 +29431,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29450,7 +29450,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29469,7 +29469,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29488,7 +29488,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29507,7 +29507,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29529,7 +29529,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29551,7 +29551,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29570,7 +29570,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29589,7 +29589,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29608,7 +29608,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29627,7 +29627,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29646,7 +29646,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29665,7 +29665,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29687,7 +29687,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29709,7 +29709,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29728,7 +29728,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29747,7 +29747,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29766,7 +29766,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29785,7 +29785,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29804,7 +29804,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29823,7 +29823,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29845,7 +29845,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29864,7 +29864,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29883,7 +29883,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29902,7 +29902,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29927,7 +29927,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29952,7 +29952,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29971,7 +29971,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -29990,7 +29990,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30009,7 +30009,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30028,7 +30028,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30047,7 +30047,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30066,7 +30066,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30091,7 +30091,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30116,7 +30116,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30135,7 +30135,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30154,7 +30154,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30173,7 +30173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30192,7 +30192,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30211,7 +30211,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30230,7 +30230,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30255,7 +30255,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30274,7 +30274,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30293,7 +30293,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -30312,7 +30312,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30322,7 +30322,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30332,7 +30332,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30342,7 +30342,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30352,7 +30352,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30362,7 +30362,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30372,7 +30372,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30382,7 +30382,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30392,7 +30392,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30402,7 +30402,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30412,7 +30412,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30422,7 +30422,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30432,7 +30432,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30442,7 +30442,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30452,7 +30452,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30462,7 +30462,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30472,7 +30472,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30482,7 +30482,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30492,7 +30492,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30502,7 +30502,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30512,7 +30512,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30522,7 +30522,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30532,7 +30532,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30542,7 +30542,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30552,7 +30552,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30562,7 +30562,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30572,7 +30572,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30582,7 +30582,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30592,7 +30592,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30602,7 +30602,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30612,7 +30612,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30622,7 +30622,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30632,7 +30632,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30642,7 +30642,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30652,7 +30652,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30662,7 +30662,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30672,7 +30672,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30682,7 +30682,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30692,7 +30692,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30702,7 +30702,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30712,7 +30712,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30722,7 +30722,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -30732,7 +30732,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30742,7 +30742,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30752,7 +30752,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30762,7 +30762,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30772,7 +30772,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30782,7 +30782,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30792,7 +30792,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30802,7 +30802,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30812,7 +30812,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30822,7 +30822,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30832,7 +30832,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30842,7 +30842,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -30852,13 +30852,13 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -30871,7 +30871,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(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -30884,27 +30884,27 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] - public static void ReadBufferIndexed(OpenTK.Graphics.ES20.All src, Int32 index) { throw new NotImplementedException(); } + public static void ReadBufferIndexed(OpenTK.Graphics.ES20.All src, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30917,7 +30917,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30933,7 +30933,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30949,7 +30949,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30965,7 +30965,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30980,7 +30980,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] 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, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -30992,7 +30992,7 @@ namespace OpenTK.Graphics.ES20 /// /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31007,7 +31007,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31022,7 +31022,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31037,7 +31037,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31051,21 +31051,21 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -31087,7 +31087,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -31108,7 +31108,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31116,7 +31116,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31124,7 +31124,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31132,7 +31132,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31140,7 +31140,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31148,7 +31148,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31156,7 +31156,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31164,7 +31164,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31172,7 +31172,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31180,7 +31180,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31189,7 +31189,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31198,7 +31198,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31207,7 +31207,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.All pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31215,7 +31215,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31223,7 +31223,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31231,7 +31231,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31240,7 +31240,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31249,7 +31249,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31258,7 +31258,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.All pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31266,7 +31266,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31274,7 +31274,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31282,7 +31282,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES20.SemaphoreParameterName pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31294,7 +31294,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31305,7 +31305,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31317,7 +31317,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31328,7 +31328,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31340,7 +31340,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31351,7 +31351,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31363,7 +31363,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31374,7 +31374,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31386,7 +31386,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31397,7 +31397,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31409,7 +31409,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -31420,7 +31420,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31437,7 +31437,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31454,7 +31454,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31470,7 +31470,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -31486,7 +31486,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31508,7 +31508,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31530,7 +31530,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31552,7 +31552,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -31574,7 +31574,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_sparse_texture] /// @@ -31587,7 +31587,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "EXT_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentEXT")] - public static void TexPageCommitment(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31596,7 +31596,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31605,7 +31605,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31614,7 +31614,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31622,7 +31622,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31630,7 +31630,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31638,7 +31638,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31647,7 +31647,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31656,7 +31656,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31665,7 +31665,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31673,7 +31673,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31681,7 +31681,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -31689,7 +31689,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -31707,7 +31707,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -31729,7 +31729,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -31750,7 +31750,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES20.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES20.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -31775,7 +31775,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -31799,7 +31799,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES20.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES20.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31811,7 +31811,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31823,7 +31823,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31834,7 +31834,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31845,7 +31845,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31858,7 +31858,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31871,7 +31871,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31883,7 +31883,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31895,7 +31895,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31909,7 +31909,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31923,7 +31923,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31936,7 +31936,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31949,7 +31949,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31963,7 +31963,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31977,7 +31977,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31990,7 +31990,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32003,7 +32003,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES20.TextureTarget target, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32018,7 +32018,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32033,7 +32033,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32047,7 +32047,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32061,7 +32061,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES20.TextureTarget target, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32071,7 +32071,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32081,7 +32081,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32092,7 +32092,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32103,7 +32103,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES20.All target, Int32 levels, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32115,7 +32115,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -32127,7 +32127,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32138,7 +32138,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32149,7 +32149,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32161,7 +32161,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32173,7 +32173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32186,7 +32186,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32199,7 +32199,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32212,7 +32212,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32225,7 +32225,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32239,7 +32239,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32253,7 +32253,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES20.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -32284,7 +32284,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -32315,7 +32315,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -32331,7 +32331,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(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -32347,21 +32347,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UseShaderProgram(OpenTK.Graphics.ES20.All type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES20.All type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -32371,7 +32371,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(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -32381,7 +32381,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -32394,7 +32394,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -32407,7 +32407,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32419,7 +32419,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32430,7 +32430,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32442,7 +32442,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32453,7 +32453,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32465,7 +32465,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32476,7 +32476,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32488,7 +32488,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32499,7 +32499,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32511,7 +32511,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32522,7 +32522,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES20.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32534,7 +32534,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32545,7 +32545,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES20.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -32553,7 +32553,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -32561,7 +32561,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -32569,7 +32569,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.ES20.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } } @@ -32585,7 +32585,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32597,7 +32597,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -32608,7 +32608,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -32619,7 +32619,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32632,7 +32632,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32645,7 +32645,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32657,7 +32657,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -32669,33 +32669,33 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32703,7 +32703,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32711,7 +32711,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32720,7 +32720,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32729,7 +32729,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32738,7 +32738,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32747,7 +32747,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32756,7 +32756,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32765,7 +32765,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -32787,7 +32787,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -32808,21 +32808,21 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32830,7 +32830,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32838,7 +32838,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32846,7 +32846,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32854,7 +32854,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32862,7 +32862,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -32870,7 +32870,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } } @@ -32880,174 +32880,174 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33063,7 +33063,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33079,7 +33079,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33095,7 +33095,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33111,7 +33111,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33127,7 +33127,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33143,7 +33143,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33153,7 +33153,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33163,7 +33163,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33173,7 +33173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33185,7 +33185,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33197,7 +33197,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33209,7 +33209,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33221,7 +33221,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33233,7 +33233,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33245,7 +33245,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33257,7 +33257,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33269,7 +33269,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33281,7 +33281,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33293,7 +33293,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33305,7 +33305,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33317,7 +33317,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33327,7 +33327,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33337,7 +33337,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33347,7 +33347,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33359,7 +33359,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33371,7 +33371,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33383,7 +33383,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33395,7 +33395,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33407,7 +33407,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33419,7 +33419,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33431,7 +33431,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33443,7 +33443,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33455,7 +33455,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33467,7 +33467,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33479,7 +33479,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33491,55 +33491,55 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33551,7 +33551,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33563,7 +33563,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33575,7 +33575,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33587,7 +33587,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33599,7 +33599,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -33611,7 +33611,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -33619,7 +33619,7 @@ namespace OpenTK.Graphics.ES20 { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33631,7 +33631,7 @@ namespace OpenTK.Graphics.ES20 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33646,7 +33646,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33661,7 +33661,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33676,7 +33676,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -33690,7 +33690,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33716,7 +33716,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33742,7 +33742,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33768,7 +33768,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33794,7 +33794,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, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33820,7 +33820,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 UInt32 ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33846,7 +33846,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33871,7 +33871,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33896,7 +33896,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33921,7 +33921,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33946,7 +33946,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, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33971,7 +33971,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 UInt32 ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -33996,7 +33996,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -34022,7 +34022,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -34048,7 +34048,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, UInt32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -34073,7 +34073,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -34098,7 +34098,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, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34130,7 +34130,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, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34162,7 +34162,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, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34194,7 +34194,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34225,7 +34225,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34256,7 +34256,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34287,7 +34287,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34319,7 +34319,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34351,7 +34351,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34383,7 +34383,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34414,7 +34414,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34445,7 +34445,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES20.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -34476,11 +34476,11 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES20.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34489,7 +34489,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34498,7 +34498,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34507,7 +34507,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34516,7 +34516,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34525,7 +34525,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34534,7 +34534,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34543,7 +34543,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34552,7 +34552,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34561,7 +34561,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34570,7 +34570,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34579,7 +34579,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34588,7 +34588,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34597,7 +34597,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34606,7 +34606,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -34615,7 +34615,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34638,7 +34638,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34661,7 +34661,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34684,7 +34684,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34707,7 +34707,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, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34730,7 +34730,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, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34753,7 +34753,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34775,7 +34775,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34797,7 +34797,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34819,7 +34819,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34841,7 +34841,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34863,7 +34863,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -34885,7 +34885,7 @@ namespace OpenTK.Graphics.ES20 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34905,7 +34905,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34925,7 +34925,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34945,7 +34945,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34967,7 +34967,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -34989,7 +34989,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35011,7 +35011,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35033,7 +35033,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35055,7 +35055,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35077,7 +35077,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35099,7 +35099,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35121,7 +35121,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35143,7 +35143,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35165,7 +35165,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35187,7 +35187,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -35209,13 +35209,13 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -35224,7 +35224,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -35233,7 +35233,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -35242,7 +35242,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -35250,7 +35250,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -35270,7 +35270,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(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -35290,7 +35290,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, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -35309,7 +35309,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(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -35328,7 +35328,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ObjectLabel(OpenTK.Graphics.ES20.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35343,7 +35343,7 @@ namespace OpenTK.Graphics.ES20 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35361,7 +35361,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35379,7 +35379,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35397,7 +35397,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -35414,13 +35414,13 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -35439,7 +35439,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(); } + public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -35458,7 +35458,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void PushDebugGroup(OpenTK.Graphics.ES20.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35471,7 +35471,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, OpenTK.Graphics.ES20.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35487,7 +35487,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35503,7 +35503,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35519,7 +35519,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35534,7 +35534,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] 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, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35546,7 +35546,7 @@ namespace OpenTK.Graphics.ES20 /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35561,7 +35561,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35576,7 +35576,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35591,7 +35591,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -35605,7 +35605,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, OpenTK.Graphics.ES20.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -35622,7 +35622,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -35635,17 +35635,17 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -35682,7 +35682,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.All mask, OpenTK.Graphics.ES20.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.All mask, OpenTK.Graphics.ES20.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -35718,13 +35718,13 @@ namespace OpenTK.Graphics.ES20 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.ES20.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.ES20.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -35746,7 +35746,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES20.All readTarget, OpenTK.Graphics.ES20.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES20.All readTarget, OpenTK.Graphics.ES20.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -35768,7 +35768,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES20.All readTarget, OpenTK.Graphics.ES20.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES20.All readTarget, OpenTK.Graphics.ES20.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -35789,7 +35789,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES20.BufferTarget readTarget, OpenTK.Graphics.ES20.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES20.BufferTarget readTarget, OpenTK.Graphics.ES20.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -35810,57 +35810,57 @@ namespace OpenTK.Graphics.ES20 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES20.BufferTarget readTarget, OpenTK.Graphics.ES20.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES20.BufferTarget readTarget, OpenTK.Graphics.ES20.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageMaskNV")] - public static void CoverageMask(bool mask) { throw new NotImplementedException(); } + public static void CoverageMask(bool mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.ES20.All components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.ES20.All components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageOperationNV")] - public static void CoverageOperation(OpenTK.Graphics.ES20.All operation) { throw new NotImplementedException(); } + public static void CoverageOperation(OpenTK.Graphics.ES20.All operation) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35872,7 +35872,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35884,7 +35884,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35896,7 +35896,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35908,7 +35908,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35920,7 +35920,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35932,7 +35932,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35946,7 +35946,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35960,7 +35960,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35974,7 +35974,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -35988,7 +35988,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36002,7 +36002,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36016,7 +36016,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36030,7 +36030,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36044,7 +36044,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36058,7 +36058,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36072,7 +36072,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36086,7 +36086,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36100,7 +36100,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36114,7 +36114,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36128,7 +36128,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36142,7 +36142,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36156,7 +36156,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36170,7 +36170,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36184,7 +36184,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36198,7 +36198,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36212,7 +36212,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36226,7 +36226,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36240,7 +36240,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36254,7 +36254,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36268,21 +36268,21 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36294,7 +36294,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36306,7 +36306,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36318,7 +36318,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36330,7 +36330,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36342,7 +36342,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36354,7 +36354,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36368,7 +36368,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36382,7 +36382,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36396,7 +36396,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36410,7 +36410,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36424,7 +36424,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36438,7 +36438,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36452,7 +36452,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36466,7 +36466,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36480,7 +36480,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36494,7 +36494,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36508,7 +36508,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36522,7 +36522,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36536,7 +36536,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36550,7 +36550,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36564,7 +36564,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36578,7 +36578,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36592,7 +36592,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36606,7 +36606,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36620,7 +36620,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36634,7 +36634,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36648,7 +36648,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36662,7 +36662,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36676,7 +36676,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -36690,89 +36690,89 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36788,7 +36788,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36804,7 +36804,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36820,7 +36820,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36836,7 +36836,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36852,7 +36852,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -36868,7 +36868,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -36884,7 +36884,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -36900,21 +36900,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -36933,7 +36933,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -36951,7 +36951,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -36965,7 +36965,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, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -36979,7 +36979,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, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -36993,7 +36993,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -37006,7 +37006,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -37019,7 +37019,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES20.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -37032,7 +37032,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES20.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37054,7 +37054,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37079,7 +37079,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37104,7 +37104,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37129,7 +37129,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37153,7 +37153,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37174,7 +37174,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37198,7 +37198,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37222,7 +37222,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37246,7 +37246,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -37269,7 +37269,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -37285,7 +37285,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -37301,7 +37301,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -37312,7 +37312,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -37323,35 +37323,35 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37360,7 +37360,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37369,7 +37369,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37378,7 +37378,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37387,7 +37387,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37396,7 +37396,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -37405,85 +37405,85 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES20.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37491,7 +37491,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37499,7 +37499,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37507,7 +37507,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37515,7 +37515,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37523,7 +37523,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -37531,7 +37531,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37539,7 +37539,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37547,7 +37547,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37555,7 +37555,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37563,7 +37563,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37571,7 +37571,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -37579,7 +37579,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -37589,7 +37589,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -37599,7 +37599,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES20.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -37610,7 +37610,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -37621,7 +37621,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -37632,7 +37632,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 samples, OpenTK.Graphics.ES20.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37640,7 +37640,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37648,7 +37648,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37656,7 +37656,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37664,7 +37664,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37672,7 +37672,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37680,169 +37680,169 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37850,7 +37850,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37858,7 +37858,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37868,7 +37868,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37878,7 +37878,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37888,7 +37888,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37898,7 +37898,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37908,7 +37908,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37918,7 +37918,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37930,7 +37930,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37942,7 +37942,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37954,7 +37954,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37968,7 +37968,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37982,7 +37982,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -37996,7 +37996,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38010,7 +38010,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38024,7 +38024,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38038,7 +38038,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38052,7 +38052,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38066,7 +38066,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38080,7 +38080,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38094,7 +38094,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38108,7 +38108,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38122,7 +38122,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38134,7 +38134,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38146,7 +38146,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38158,7 +38158,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38172,7 +38172,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38186,7 +38186,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38200,7 +38200,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38214,7 +38214,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38228,7 +38228,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38242,7 +38242,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38256,7 +38256,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38270,7 +38270,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38284,7 +38284,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38298,7 +38298,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38312,7 +38312,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38326,7 +38326,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38334,7 +38334,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38342,7 +38342,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38350,7 +38350,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38358,7 +38358,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38366,7 +38366,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38374,7 +38374,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38382,7 +38382,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38390,7 +38390,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38398,7 +38398,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38406,7 +38406,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38414,7 +38414,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38422,7 +38422,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38436,7 +38436,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38450,7 +38450,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38464,7 +38464,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38478,7 +38478,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38492,7 +38492,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38506,7 +38506,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38522,7 +38522,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38538,7 +38538,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38554,7 +38554,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38570,7 +38570,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38586,7 +38586,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38602,7 +38602,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38618,7 +38618,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38634,7 +38634,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38650,7 +38650,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38666,7 +38666,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38682,7 +38682,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38698,7 +38698,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38714,7 +38714,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38730,7 +38730,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38746,7 +38746,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38762,7 +38762,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38778,7 +38778,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38794,7 +38794,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38810,7 +38810,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38826,7 +38826,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38842,7 +38842,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38858,7 +38858,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38874,7 +38874,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38890,7 +38890,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES20.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES20.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38899,7 +38899,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38908,7 +38908,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38917,7 +38917,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38925,7 +38925,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38933,7 +38933,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38941,7 +38941,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38950,7 +38950,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38959,7 +38959,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38968,7 +38968,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38976,7 +38976,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38984,7 +38984,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -38992,7 +38992,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES20.TextureUnit texCoordSet, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39011,7 +39011,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39030,7 +39030,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39049,7 +39049,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES20.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39068,7 +39068,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39087,7 +39087,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES20.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -39106,33 +39106,33 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES20.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES20.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39148,7 +39148,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39164,7 +39164,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39180,7 +39180,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39196,7 +39196,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39212,7 +39212,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Return the value of a uniform variable @@ -39228,12 +39228,12 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39242,7 +39242,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39251,7 +39251,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -39262,7 +39262,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -39273,43 +39273,43 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39318,7 +39318,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39327,7 +39327,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39335,7 +39335,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39343,195 +39343,195 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES20.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES20.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES20.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39540,7 +39540,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39549,7 +39549,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39558,7 +39558,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39567,7 +39567,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39576,7 +39576,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -39585,7 +39585,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39594,7 +39594,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39603,7 +39603,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39612,7 +39612,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.ES20.All color, OpenTK.Graphics.ES20.All genMode, OpenTK.Graphics.ES20.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39623,7 +39623,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39636,7 +39636,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39649,7 +39649,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39662,7 +39662,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39675,7 +39675,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39686,7 +39686,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39699,7 +39699,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39712,7 +39712,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39725,7 +39725,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39738,7 +39738,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39749,7 +39749,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39762,7 +39762,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39775,7 +39775,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39788,7 +39788,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39801,7 +39801,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39812,7 +39812,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39825,7 +39825,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39838,7 +39838,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39851,7 +39851,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39864,7 +39864,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39875,7 +39875,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39888,7 +39888,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39901,7 +39901,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39914,7 +39914,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39927,7 +39927,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39938,7 +39938,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39951,7 +39951,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39964,7 +39964,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39977,7 +39977,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39990,7 +39990,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -39999,7 +39999,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40010,7 +40010,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40021,7 +40021,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40032,7 +40032,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40043,7 +40043,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40052,7 +40052,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40063,7 +40063,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40074,7 +40074,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40085,7 +40085,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40096,18 +40096,18 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES20.All func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES20.All func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40115,7 +40115,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40123,7 +40123,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40131,7 +40131,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40139,7 +40139,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40147,7 +40147,7 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40155,12 +40155,12 @@ namespace OpenTK.Graphics.ES20 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.ES20.All genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.ES20.All genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40173,7 +40173,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40188,7 +40188,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40203,7 +40203,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40218,7 +40218,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40233,7 +40233,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40246,7 +40246,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40261,7 +40261,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40276,7 +40276,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40291,7 +40291,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40306,7 +40306,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40317,7 +40317,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40328,7 +40328,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40341,7 +40341,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40354,7 +40354,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40367,7 +40367,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40380,7 +40380,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40393,7 +40393,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40406,7 +40406,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40419,7 +40419,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40432,7 +40432,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathGlyphIndexRange(OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40446,7 +40446,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40462,7 +40462,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40478,7 +40478,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40494,7 +40494,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40510,7 +40510,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40524,7 +40524,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40540,7 +40540,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40556,7 +40556,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40572,7 +40572,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40588,7 +40588,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40603,7 +40603,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40621,7 +40621,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40639,7 +40639,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40657,7 +40657,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40675,7 +40675,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40690,7 +40690,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40708,7 +40708,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40726,7 +40726,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40744,7 +40744,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40762,7 +40762,7 @@ namespace OpenTK.Graphics.ES20 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES20.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40776,7 +40776,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40792,7 +40792,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40808,7 +40808,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40824,7 +40824,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40840,7 +40840,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40854,7 +40854,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40870,7 +40870,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40886,7 +40886,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40902,7 +40902,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40918,7 +40918,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40932,7 +40932,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40948,7 +40948,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40964,7 +40964,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40980,7 +40980,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -40996,7 +40996,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41010,7 +41010,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41026,7 +41026,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41042,7 +41042,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41058,7 +41058,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41074,7 +41074,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static OpenTK.Graphics.ES20.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES20.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41082,7 +41082,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41090,7 +41090,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41098,7 +41098,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41106,7 +41106,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41114,7 +41114,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41122,7 +41122,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41130,7 +41130,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41138,7 +41138,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41146,7 +41146,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41154,7 +41154,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41162,7 +41162,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41170,13 +41170,13 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41185,7 +41185,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41194,7 +41194,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41202,7 +41202,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41210,7 +41210,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES20.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41219,7 +41219,7 @@ namespace OpenTK.Graphics.ES20 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41230,7 +41230,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41241,7 +41241,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41252,7 +41252,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41263,7 +41263,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41272,7 +41272,7 @@ namespace OpenTK.Graphics.ES20 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41283,7 +41283,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41294,7 +41294,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41305,7 +41305,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41316,7 +41316,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES20.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41329,7 +41329,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41344,7 +41344,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41359,7 +41359,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41374,7 +41374,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41389,7 +41389,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41402,7 +41402,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41417,7 +41417,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41432,7 +41432,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41447,7 +41447,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41462,7 +41462,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41475,7 +41475,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41490,7 +41490,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41505,7 +41505,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41520,7 +41520,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41535,7 +41535,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41548,7 +41548,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41563,7 +41563,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41578,7 +41578,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41593,7 +41593,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41608,7 +41608,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41621,7 +41621,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41636,7 +41636,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41651,7 +41651,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41666,7 +41666,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41681,7 +41681,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41694,7 +41694,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41709,7 +41709,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41724,7 +41724,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41739,7 +41739,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41754,7 +41754,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41764,7 +41764,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41776,7 +41776,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41788,7 +41788,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41800,7 +41800,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41812,7 +41812,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41822,7 +41822,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41834,7 +41834,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41846,7 +41846,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41858,7 +41858,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41870,7 +41870,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES20.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41879,7 +41879,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41888,7 +41888,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41897,7 +41897,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.ES20.All texCoordSet, OpenTK.Graphics.ES20.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41910,7 +41910,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41923,7 +41923,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41936,7 +41936,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41949,7 +41949,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -41962,7 +41962,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -41974,7 +41974,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES20.MaterialFace face, OpenTK.Graphics.ES20.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES20.MaterialFace face, OpenTK.Graphics.ES20.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41984,7 +41984,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -41994,7 +41994,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42004,7 +42004,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42014,7 +42014,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42024,7 +42024,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42034,7 +42034,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES20.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42050,7 +42050,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42066,7 +42066,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42085,7 +42085,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42104,7 +42104,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42123,7 +42123,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42142,7 +42142,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42161,7 +42161,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42180,7 +42180,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42196,7 +42196,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42215,7 +42215,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42234,7 +42234,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42253,7 +42253,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42272,7 +42272,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42291,7 +42291,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42310,7 +42310,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42329,7 +42329,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42348,7 +42348,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42367,7 +42367,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42386,7 +42386,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42405,7 +42405,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42424,7 +42424,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42443,7 +42443,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42462,7 +42462,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42481,7 +42481,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42503,7 +42503,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42525,7 +42525,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42544,7 +42544,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42563,7 +42563,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42582,7 +42582,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42601,7 +42601,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42620,7 +42620,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42639,7 +42639,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42661,7 +42661,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42680,7 +42680,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42699,7 +42699,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42718,7 +42718,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42743,7 +42743,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42768,7 +42768,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42787,7 +42787,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42806,7 +42806,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42825,7 +42825,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42844,7 +42844,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42863,7 +42863,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42882,7 +42882,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42907,7 +42907,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42926,7 +42926,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42945,7 +42945,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -42964,7 +42964,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -42972,7 +42972,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -42980,7 +42980,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -42989,7 +42989,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -42998,7 +42998,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43007,7 +43007,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43016,7 +43016,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43025,7 +43025,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43034,7 +43034,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_read_buffer] /// Select a color buffer source for pixels @@ -43043,7 +43043,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a color buffer. Accepted values are FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and the constants ColorAttachmenti. /// [AutoGenerated(Category = "NV_read_buffer", Version = "", EntryPoint = "glReadBufferNV")] - public static void ReadBuffer(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -43065,7 +43065,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -43086,11 +43086,11 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43106,7 +43106,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43122,7 +43122,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43138,7 +43138,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43154,7 +43154,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43170,7 +43170,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -43186,7 +43186,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43208,7 +43208,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43230,7 +43230,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43243,7 +43243,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43256,7 +43256,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43269,7 +43269,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43282,7 +43282,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43295,7 +43295,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -43308,45 +43308,45 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.ES20.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.ES20.All condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.ES20.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43359,7 +43359,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43372,7 +43372,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43385,7 +43385,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43398,7 +43398,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43411,7 +43411,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43424,7 +43424,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43439,7 +43439,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43454,7 +43454,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43469,7 +43469,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43484,7 +43484,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43499,7 +43499,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43514,7 +43514,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43529,7 +43529,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43544,7 +43544,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43559,7 +43559,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43574,7 +43574,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43589,7 +43589,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43604,7 +43604,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43619,7 +43619,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43634,7 +43634,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43649,7 +43649,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43664,7 +43664,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43679,7 +43679,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43694,7 +43694,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43709,7 +43709,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43724,7 +43724,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43739,7 +43739,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43754,7 +43754,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43769,7 +43769,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43784,7 +43784,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43792,7 +43792,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43800,7 +43800,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43813,7 +43813,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43826,7 +43826,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43839,7 +43839,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43852,7 +43852,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43865,7 +43865,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43878,7 +43878,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43893,7 +43893,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43908,7 +43908,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43923,7 +43923,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43938,7 +43938,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43953,7 +43953,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43968,7 +43968,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43983,7 +43983,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43998,7 +43998,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44013,7 +44013,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44028,7 +44028,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44043,7 +44043,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44058,7 +44058,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44073,7 +44073,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44088,7 +44088,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44103,7 +44103,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44118,7 +44118,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44133,7 +44133,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44148,7 +44148,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44163,7 +44163,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44178,7 +44178,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44193,7 +44193,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44208,7 +44208,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44223,7 +44223,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44238,7 +44238,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44246,7 +44246,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44254,7 +44254,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44268,7 +44268,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44282,7 +44282,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44296,7 +44296,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44310,7 +44310,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44324,7 +44324,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44338,7 +44338,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44354,7 +44354,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44370,7 +44370,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44386,7 +44386,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44402,7 +44402,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44418,7 +44418,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44434,7 +44434,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44450,7 +44450,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44466,7 +44466,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44482,7 +44482,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44498,7 +44498,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44514,7 +44514,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44530,7 +44530,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44546,7 +44546,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44562,7 +44562,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44578,7 +44578,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44594,7 +44594,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44610,7 +44610,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44626,7 +44626,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44642,7 +44642,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44658,7 +44658,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44674,7 +44674,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44690,7 +44690,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44706,7 +44706,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44722,7 +44722,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44731,7 +44731,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES20.All fillMode, Int32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44740,7 +44740,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES20.All fillMode, UInt32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44754,7 +44754,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44768,7 +44768,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44782,7 +44782,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44796,7 +44796,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44810,7 +44810,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44824,7 +44824,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44840,7 +44840,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44856,7 +44856,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44872,7 +44872,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44888,7 +44888,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44904,7 +44904,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44920,7 +44920,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44936,7 +44936,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44952,7 +44952,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44968,7 +44968,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44984,7 +44984,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45000,7 +45000,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45016,7 +45016,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45032,7 +45032,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45048,7 +45048,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45064,7 +45064,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45080,7 +45080,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45096,7 +45096,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45112,7 +45112,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45128,7 +45128,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45144,7 +45144,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45160,7 +45160,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45176,7 +45176,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45192,7 +45192,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45208,7 +45208,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES20.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode, OpenTK.Graphics.ES20.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45217,7 +45217,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45226,33 +45226,33 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES20.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45261,7 +45261,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45270,7 +45270,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45279,7 +45279,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45288,7 +45288,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45297,7 +45297,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45306,7 +45306,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES20.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45318,7 +45318,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45334,7 +45334,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45350,7 +45350,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45366,7 +45366,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45379,7 +45379,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45395,7 +45395,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45411,7 +45411,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45427,7 +45427,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45442,7 +45442,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45458,7 +45458,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45474,7 +45474,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45490,7 +45490,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45506,7 +45506,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45522,7 +45522,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45538,7 +45538,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45554,7 +45554,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45572,7 +45572,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45588,7 +45588,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45604,7 +45604,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45620,7 +45620,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45639,7 +45639,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45655,7 +45655,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45671,7 +45671,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45687,7 +45687,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45708,7 +45708,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45724,7 +45724,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45740,7 +45740,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45756,7 +45756,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45778,7 +45778,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45794,7 +45794,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45810,7 +45810,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -45826,21 +45826,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45848,7 +45848,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45856,7 +45856,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45864,7 +45864,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45872,7 +45872,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45880,7 +45880,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45888,7 +45888,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45897,7 +45897,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45906,7 +45906,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45915,7 +45915,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45924,7 +45924,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45933,7 +45933,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45942,7 +45942,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45951,7 +45951,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45960,7 +45960,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45969,7 +45969,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45978,7 +45978,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45987,7 +45987,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -45996,7 +45996,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46005,7 +46005,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46014,7 +46014,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46023,7 +46023,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46032,7 +46032,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46041,7 +46041,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -46050,7 +46050,7 @@ namespace OpenTK.Graphics.ES20 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -46063,7 +46063,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -46076,7 +46076,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46092,7 +46092,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46108,7 +46108,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46124,7 +46124,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46140,7 +46140,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46156,7 +46156,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -46172,7 +46172,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46194,7 +46194,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46216,7 +46216,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46229,7 +46229,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46242,7 +46242,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46255,7 +46255,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46268,7 +46268,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46281,7 +46281,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -46294,7 +46294,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -46304,7 +46304,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES20.All swizzlex, OpenTK.Graphics.ES20.All swizzley, OpenTK.Graphics.ES20.All swizzlez, OpenTK.Graphics.ES20.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES20.All swizzlex, OpenTK.Graphics.ES20.All swizzley, OpenTK.Graphics.ES20.All swizzlez, OpenTK.Graphics.ES20.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -46314,19 +46314,19 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES20.All swizzlex, OpenTK.Graphics.ES20.All swizzley, OpenTK.Graphics.ES20.All swizzlez, OpenTK.Graphics.ES20.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES20.All swizzlex, OpenTK.Graphics.ES20.All swizzley, OpenTK.Graphics.ES20.All swizzlez, OpenTK.Graphics.ES20.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46335,7 +46335,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46344,7 +46344,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46353,7 +46353,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46362,7 +46362,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46371,7 +46371,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46380,7 +46380,7 @@ namespace OpenTK.Graphics.ES20 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -46394,7 +46394,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(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -46404,7 +46404,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -46418,7 +46418,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -46431,7 +46431,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -46445,7 +46445,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -46458,7 +46458,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -46475,7 +46475,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -46491,7 +46491,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -46508,7 +46508,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -46524,7 +46524,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -46538,7 +46538,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -46552,7 +46552,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES20.All src, OpenTK.Graphics.ES20.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -46574,7 +46574,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -46596,7 +46596,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES20.All srcRGB, OpenTK.Graphics.ES20.All dstRGB, OpenTK.Graphics.ES20.All srcAlpha, OpenTK.Graphics.ES20.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -46616,7 +46616,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -46636,7 +46636,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46670,7 +46670,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46707,7 +46707,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46744,7 +46744,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46781,7 +46781,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46817,7 +46817,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46850,7 +46850,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46886,7 +46886,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46922,7 +46922,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46958,7 +46958,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -46993,7 +46993,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47033,7 +47033,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47076,7 +47076,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47119,7 +47119,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47162,7 +47162,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47204,7 +47204,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47243,7 +47243,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47285,7 +47285,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47327,7 +47327,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47369,7 +47369,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -47410,7 +47410,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -47462,7 +47462,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -47514,7 +47514,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES20.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES20.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -47548,7 +47548,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -47581,7 +47581,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES20.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47591,7 +47591,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47601,7 +47601,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47614,7 +47614,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47627,7 +47627,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47640,7 +47640,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47653,7 +47653,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47666,7 +47666,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -47679,7 +47679,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47695,7 +47695,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47711,7 +47711,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47727,7 +47727,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47743,7 +47743,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47759,7 +47759,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -47775,7 +47775,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -47791,7 +47791,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -47807,21 +47807,21 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47843,7 +47843,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47868,7 +47868,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47893,7 +47893,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47918,7 +47918,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47942,7 +47942,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47963,7 +47963,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -47987,7 +47987,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48011,7 +48011,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48035,7 +48035,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48058,7 +48058,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48083,7 +48083,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48111,7 +48111,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48139,7 +48139,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48167,7 +48167,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48194,7 +48194,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48218,7 +48218,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48245,7 +48245,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48272,7 +48272,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48299,7 +48299,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -48325,7 +48325,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48354,7 +48354,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48385,7 +48385,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48416,7 +48416,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48447,7 +48447,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48478,7 +48478,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48507,7 +48507,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48538,7 +48538,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48569,7 +48569,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48600,7 +48600,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48631,7 +48631,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48659,7 +48659,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48689,7 +48689,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48719,7 +48719,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48749,7 +48749,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48779,7 +48779,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48807,7 +48807,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48837,7 +48837,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48867,7 +48867,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48897,7 +48897,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -48927,19 +48927,19 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES20.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")] - public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES20.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES20.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")] - public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES20.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES20.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -48950,7 +48950,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -48961,7 +48961,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -48972,7 +48972,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -48983,7 +48983,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49003,7 +49003,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49023,7 +49023,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49042,7 +49042,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -49061,14 +49061,14 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49081,7 +49081,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49094,7 +49094,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49107,7 +49107,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49120,7 +49120,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49133,7 +49133,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -49146,7 +49146,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49154,7 +49154,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49165,7 +49165,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49176,7 +49176,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49187,7 +49187,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49197,14 +49197,14 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// /// /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49214,7 +49214,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49224,7 +49224,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49234,7 +49234,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -49243,7 +49243,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES20.BufferTarget target, OpenTK.Graphics.ES20.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49251,7 +49251,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49259,7 +49259,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49267,7 +49267,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49275,7 +49275,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49283,7 +49283,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -49291,7 +49291,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES20.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49314,7 +49314,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49339,7 +49339,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49364,7 +49364,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49389,7 +49389,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49414,7 +49414,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49437,7 +49437,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49462,7 +49462,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49487,7 +49487,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49512,7 +49512,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49537,7 +49537,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49560,7 +49560,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49585,7 +49585,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49610,7 +49610,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49635,7 +49635,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49660,7 +49660,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49683,7 +49683,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49708,7 +49708,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49733,7 +49733,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49758,7 +49758,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49783,7 +49783,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49806,7 +49806,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49831,7 +49831,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49856,7 +49856,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49881,7 +49881,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49906,7 +49906,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49929,7 +49929,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49954,7 +49954,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -49979,7 +49979,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -50004,7 +50004,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -50029,7 +50029,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES20.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50037,7 +50037,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50045,7 +50045,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50053,7 +50053,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50061,7 +50061,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50069,7 +50069,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50077,7 +50077,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50085,7 +50085,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50093,7 +50093,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50101,7 +50101,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50110,7 +50110,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50119,7 +50119,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50128,7 +50128,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50136,7 +50136,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50144,7 +50144,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50152,7 +50152,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50161,7 +50161,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50170,7 +50170,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50179,7 +50179,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50187,7 +50187,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50195,7 +50195,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50203,7 +50203,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -50214,7 +50214,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -50225,7 +50225,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES20.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -50235,7 +50235,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(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -50245,7 +50245,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -50257,7 +50257,7 @@ namespace OpenTK.Graphics.ES20 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -50266,7 +50266,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "OES_sample_shading", Version = "", EntryPoint = "glMinSampleShadingOES")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_tessellation_shader] /// Specifies the parameters for patch primitives @@ -50278,7 +50278,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] - public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES20.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_primitive_bounding_box] /// @@ -50290,7 +50290,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "OES_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxOES")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50309,7 +50309,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, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50330,7 +50330,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50351,7 +50351,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50372,7 +50372,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50393,7 +50393,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50412,7 +50412,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50433,7 +50433,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50454,7 +50454,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50475,7 +50475,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -50496,7 +50496,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES20.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50504,7 +50504,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50512,7 +50512,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50520,7 +50520,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50528,7 +50528,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50536,7 +50536,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50544,7 +50544,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50552,7 +50552,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50560,7 +50560,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -50568,7 +50568,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50584,7 +50584,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50600,7 +50600,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50616,7 +50616,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50632,7 +50632,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50648,7 +50648,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -50664,7 +50664,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50686,7 +50686,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50708,7 +50708,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50721,7 +50721,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50734,7 +50734,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50747,7 +50747,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50760,7 +50760,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50773,7 +50773,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -50786,7 +50786,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50803,7 +50803,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50820,7 +50820,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50836,7 +50836,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -50852,7 +50852,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50874,7 +50874,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50896,7 +50896,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50918,7 +50918,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -50940,7 +50940,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -50977,7 +50977,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51017,7 +51017,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51057,7 +51057,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51097,7 +51097,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51136,7 +51136,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51173,7 +51173,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51213,7 +51213,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51253,7 +51253,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51293,7 +51293,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51332,7 +51332,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51369,7 +51369,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51409,7 +51409,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51449,7 +51449,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51489,7 +51489,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51528,7 +51528,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51564,7 +51564,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51603,7 +51603,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51642,7 +51642,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51681,7 +51681,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -51719,7 +51719,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51728,7 +51728,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51737,7 +51737,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51746,7 +51746,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51754,7 +51754,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51762,7 +51762,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51770,7 +51770,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51779,7 +51779,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51788,7 +51788,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51797,7 +51797,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51805,7 +51805,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51813,7 +51813,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -51821,7 +51821,7 @@ namespace OpenTK.Graphics.ES20 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES20.TextureTarget target, OpenTK.Graphics.ES20.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_storage_multisample_2d_array] /// Specify storage for a two-dimensional multisample array texture @@ -51848,7 +51848,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] - public static void TexStorage3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.ES20.All target, Int32 samples, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -51888,7 +51888,7 @@ namespace OpenTK.Graphics.ES20 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -51931,7 +51931,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -51974,7 +51974,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52017,7 +52017,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52059,7 +52059,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52098,7 +52098,7 @@ namespace OpenTK.Graphics.ES20 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52140,7 +52140,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52182,7 +52182,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52224,7 +52224,7 @@ namespace OpenTK.Graphics.ES20 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -52265,7 +52265,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -52296,7 +52296,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES20.All target, Int32 origtexture, OpenTK.Graphics.ES20.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -52327,18 +52327,18 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES20.All target, UInt32 origtexture, OpenTK.Graphics.ES20.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES20.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES20.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES20.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52354,7 +52354,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52370,7 +52370,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52386,7 +52386,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52402,7 +52402,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52418,7 +52418,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -52434,7 +52434,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52456,7 +52456,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52478,7 +52478,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52491,7 +52491,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52504,7 +52504,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52517,7 +52517,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52530,7 +52530,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52543,7 +52543,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -52556,7 +52556,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } } @@ -52573,7 +52573,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -52586,7 +52586,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -52598,7 +52598,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -52610,7 +52610,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52622,7 +52622,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52634,7 +52634,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52645,7 +52645,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -52656,7 +52656,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -52672,49 +52672,49 @@ namespace OpenTK.Graphics.ES20 /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "QCOM_alpha_test", Version = "", EntryPoint = "glAlphaFuncQCOM")] - public static void AlphaFunc(OpenTK.Graphics.ES20.All func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES20.All func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] - public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52723,7 +52723,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52732,7 +52732,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52741,7 +52741,7 @@ namespace OpenTK.Graphics.ES20 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -52749,7 +52749,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] public static void ExtGetBufferPointer(OpenTK.Graphics.ES20.All target, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52758,7 +52758,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52766,7 +52766,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52775,7 +52775,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52784,7 +52784,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52793,7 +52793,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52801,7 +52801,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52810,7 +52810,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -52819,7 +52819,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52828,7 +52828,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52836,7 +52836,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52845,7 +52845,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52854,7 +52854,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52863,7 +52863,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52871,7 +52871,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52880,7 +52880,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -52889,7 +52889,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52898,7 +52898,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52907,7 +52907,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52916,7 +52916,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52925,7 +52925,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52934,7 +52934,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -52943,7 +52943,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES20.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52952,7 +52952,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52960,7 +52960,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52969,7 +52969,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52978,7 +52978,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52987,7 +52987,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -52995,7 +52995,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -53004,7 +53004,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -53013,7 +53013,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53022,7 +53022,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53030,7 +53030,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53039,7 +53039,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53048,7 +53048,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53057,7 +53057,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53065,7 +53065,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53074,7 +53074,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -53083,7 +53083,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53092,7 +53092,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53100,7 +53100,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53109,7 +53109,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53118,7 +53118,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53127,7 +53127,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53135,7 +53135,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53144,7 +53144,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -53153,7 +53153,7 @@ namespace OpenTK.Graphics.ES20 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53163,7 +53163,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53173,7 +53173,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53183,7 +53183,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53193,7 +53193,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53203,7 +53203,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53213,7 +53213,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES20.All face, Int32 level, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53228,7 +53228,7 @@ namespace OpenTK.Graphics.ES20 /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] - 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, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); } + 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, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53246,7 +53246,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53264,7 +53264,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53282,7 +53282,7 @@ namespace OpenTK.Graphics.ES20 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53299,7 +53299,7 @@ namespace OpenTK.Graphics.ES20 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] 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] ref T10 texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53307,7 +53307,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53315,7 +53315,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53323,7 +53323,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53331,7 +53331,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53339,7 +53339,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -53347,30 +53347,30 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")] - public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_shader_framebuffer_fetch_noncoherent] [AutoGenerated(Category = "QCOM_shader_framebuffer_fetch_noncoherent", Version = "", EntryPoint = "glFramebufferFetchBarrierQCOM")] - public static void FramebufferFetchBarrier() { throw new NotImplementedException(); } + public static void FramebufferFetchBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53380,7 +53380,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53390,7 +53390,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53400,7 +53400,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53410,7 +53410,7 @@ namespace OpenTK.Graphics.ES20 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53423,7 +53423,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -53436,7 +53436,7 @@ namespace OpenTK.Graphics.ES20 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53444,7 +53444,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53452,7 +53452,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53460,7 +53460,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53468,7 +53468,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53476,7 +53476,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53484,7 +53484,7 @@ namespace OpenTK.Graphics.ES20 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53493,7 +53493,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53502,7 +53502,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53511,7 +53511,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53520,7 +53520,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53529,7 +53529,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -53538,7 +53538,7 @@ namespace OpenTK.Graphics.ES20 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -53548,7 +53548,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -53558,7 +53558,7 @@ namespace OpenTK.Graphics.ES20 /// [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(); } + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/ES30/ES30.cs b/src/OpenTK/Graphics/ES30/ES30.cs index c07af980..38bffb7b 100644 --- a/src/OpenTK/Graphics/ES30/ES30.cs +++ b/src/OpenTK/Graphics/ES30/ES30.cs @@ -1541,126 +1541,126 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1670,7 +1670,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1680,7 +1680,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1690,7 +1690,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [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, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1700,7 +1700,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1710,7 +1710,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1720,7 +1720,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [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, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES30.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1729,7 +1729,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1740,7 +1740,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1751,7 +1751,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1762,7 +1762,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1773,7 +1773,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1782,7 +1782,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1793,7 +1793,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1804,7 +1804,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1815,7 +1815,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1826,7 +1826,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1836,7 +1836,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1846,7 +1846,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1856,7 +1856,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1866,7 +1866,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1876,7 +1876,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1886,7 +1886,7 @@ namespace OpenTK.Graphics.ES30 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1896,7 +1896,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1906,7 +1906,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1916,7 +1916,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1926,7 +1926,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1934,7 +1934,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1942,7 +1942,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1950,7 +1950,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1958,7 +1958,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1966,7 +1966,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -1974,7 +1974,7 @@ namespace OpenTK.Graphics.ES30 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1983,7 +1983,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1992,7 +1992,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2001,7 +2001,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2010,7 +2010,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2020,7 +2020,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2030,7 +2030,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2040,7 +2040,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2050,7 +2050,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2060,7 +2060,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2070,7 +2070,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } } @@ -2111,7 +2111,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -2147,7 +2147,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2166,7 +2166,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2184,7 +2184,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2206,7 +2206,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2231,7 +2231,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2256,7 +2256,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2281,7 +2281,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2305,7 +2305,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2326,7 +2326,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2350,7 +2350,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2374,7 +2374,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2398,7 +2398,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2421,7 +2421,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2431,7 +2431,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2441,7 +2441,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2451,7 +2451,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2461,7 +2461,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2471,7 +2471,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2481,7 +2481,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2503,7 +2503,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2524,7 +2524,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2537,7 +2537,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2550,7 +2550,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } } @@ -2571,7 +2571,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(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2588,7 +2588,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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2604,7 +2604,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(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2620,7 +2620,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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2629,7 +2629,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2638,7 +2638,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Delete a sync object @@ -2647,7 +2647,7 @@ namespace OpenTK.Graphics.ES30 /// The sync object to be deleted. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2660,7 +2660,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] - public static IntPtr FenceSync(OpenTK.Graphics.ES30.All condition, OpenTK.Graphics.ES30.All flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES30.All condition, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2672,20 +2672,20 @@ namespace OpenTK.Graphics.ES30 /// 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. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] - public static IntPtr FenceSync(OpenTK.Graphics.ES30.SyncCondition condition, OpenTK.Graphics.ES30.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES30.SyncCondition condition, OpenTK.Graphics.ES30.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2693,7 +2693,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2701,7 +2701,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// @@ -2709,28 +2709,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [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(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2753,7 +2753,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, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2776,7 +2776,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, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2799,7 +2799,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2821,7 +2821,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, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2843,7 +2843,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, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2865,7 +2865,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object @@ -2874,7 +2874,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2896,7 +2896,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2917,11 +2917,11 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glResolveMultisampleFramebufferAPPLE")] - public static void ResolveMultisampleFramebuffer() { throw new NotImplementedException(); } + public static void ResolveMultisampleFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2938,7 +2938,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(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2955,7 +2955,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, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2971,7 +2971,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(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2987,7 +2987,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, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } } @@ -2995,7 +2995,7 @@ namespace OpenTK.Graphics.ES30 { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -3007,7 +3007,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES30.All texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES30.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Select active texture unit @@ -3016,7 +3016,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies which texture unit to make active. The number of texture units is implementation-dependent, but must be at least 32. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES30.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES30.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attaches a shader object to a program object @@ -3029,7 +3029,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(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attaches a shader object to a program object @@ -3042,7 +3042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3056,7 +3056,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(); } + public static void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3070,7 +3070,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, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3083,7 +3083,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(); } + public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3096,7 +3096,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, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Start transform feedback operation @@ -3106,7 +3106,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.ES30.All primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.ES30.All primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Start transform feedback operation @@ -3115,7 +3115,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3131,7 +3131,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(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3147,7 +3147,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3161,7 +3161,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(); } + public static void BindBuffer(OpenTK.Graphics.ES30.All target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3175,7 +3175,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES30.All target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3188,7 +3188,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(); } + public static void BindBuffer(OpenTK.Graphics.ES30.BufferTarget target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3201,7 +3201,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES30.BufferTarget target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3218,7 +3218,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(); } + public static void BindBufferBase(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3235,7 +3235,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, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3251,7 +3251,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(); } + public static void BindBufferBase(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3267,7 +3267,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, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3290,7 +3290,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, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3313,7 +3313,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(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3336,7 +3336,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, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3359,7 +3359,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, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3381,7 +3381,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, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3403,7 +3403,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(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3425,7 +3425,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, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3447,7 +3447,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, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES30.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3461,7 +3461,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(); } + public static void BindFramebuffer(OpenTK.Graphics.ES30.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3475,7 +3475,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, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES30.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3488,7 +3488,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(); } + public static void BindFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3501,7 +3501,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, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3515,7 +3515,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(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES30.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3529,7 +3529,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES30.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3542,7 +3542,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(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3555,7 +3555,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES30.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a named sampler to a texturing target @@ -3568,7 +3568,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(); } + public static void BindSampler(Int32 unit, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a named sampler to a texturing target @@ -3581,7 +3581,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3595,7 +3595,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(); } + public static void BindTexture(OpenTK.Graphics.ES30.All target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3609,7 +3609,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, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES30.All target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3622,7 +3622,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(); } + public static void BindTexture(OpenTK.Graphics.ES30.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3635,7 +3635,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, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES30.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3649,7 +3649,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(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES30.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3663,7 +3663,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, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3676,7 +3676,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(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3689,7 +3689,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, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES30.TransformFeedbackTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object @@ -3699,7 +3699,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(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object @@ -3709,7 +3709,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the blend color @@ -3727,7 +3727,7 @@ namespace OpenTK.Graphics.ES30 /// specify the components of BlendColor /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3737,7 +3737,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3746,7 +3746,7 @@ namespace OpenTK.Graphics.ES30 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3759,7 +3759,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3771,7 +3771,7 @@ namespace OpenTK.Graphics.ES30 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3784,7 +3784,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES30.All sfactor, OpenTK.Graphics.ES30.All dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES30.All sfactor, OpenTK.Graphics.ES30.All dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3796,7 +3796,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES30.BlendingFactorSrc sfactor, OpenTK.Graphics.ES30.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES30.BlendingFactorSrc sfactor, OpenTK.Graphics.ES30.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3815,7 +3815,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES30.All sfactorRGB, OpenTK.Graphics.ES30.All dfactorRGB, OpenTK.Graphics.ES30.All sfactorAlpha, OpenTK.Graphics.ES30.All dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES30.All sfactorRGB, OpenTK.Graphics.ES30.All dfactorRGB, OpenTK.Graphics.ES30.All sfactorAlpha, OpenTK.Graphics.ES30.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3833,7 +3833,7 @@ namespace OpenTK.Graphics.ES30 /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES30.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES30.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES30.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES30.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES30.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES30.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES30.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES30.BlendingFactorDest dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3870,7 +3870,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3906,7 +3906,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3925,7 +3925,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3947,7 +3947,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3969,7 +3969,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3991,7 +3991,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4012,7 +4012,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4031,7 +4031,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4053,7 +4053,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4075,7 +4075,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4097,7 +4097,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4118,7 +4118,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4136,7 +4136,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4157,7 +4157,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4178,7 +4178,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4199,7 +4199,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4219,7 +4219,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4237,7 +4237,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES30.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4258,7 +4258,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4279,7 +4279,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4300,7 +4300,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4320,7 +4320,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES30.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4339,7 +4339,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4361,7 +4361,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4383,7 +4383,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4405,7 +4405,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4426,7 +4426,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4445,7 +4445,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4467,7 +4467,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4489,7 +4489,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4511,7 +4511,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4532,7 +4532,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4550,7 +4550,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4571,7 +4571,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4592,7 +4592,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4613,7 +4613,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4633,7 +4633,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4651,7 +4651,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4672,7 +4672,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4693,7 +4693,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4714,7 +4714,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4734,7 +4734,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4744,7 +4744,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES30.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4753,7 +4753,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES30.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES30.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES30.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4763,7 +4763,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES30.All mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES30.All mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4772,7 +4772,7 @@ namespace OpenTK.Graphics.ES30 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES30.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES30.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4791,7 +4791,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4809,7 +4809,7 @@ namespace OpenTK.Graphics.ES30 /// The value to clear a stencil render buffer to. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4826,7 +4826,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, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4843,7 +4843,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, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4860,7 +4860,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 unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4876,7 +4876,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, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4892,7 +4892,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, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4908,7 +4908,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4925,7 +4925,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, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4942,7 +4942,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, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4959,7 +4959,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 unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4975,7 +4975,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, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4991,7 +4991,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, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5007,7 +5007,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5024,7 +5024,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5041,7 +5041,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5058,7 +5058,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5074,7 +5074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5090,7 +5090,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -5106,7 +5106,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES30.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify clear values for the color buffers @@ -5124,7 +5124,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the depth buffer @@ -5133,7 +5133,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the stencil buffer @@ -5142,7 +5142,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -5159,7 +5159,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(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -5176,7 +5176,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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -5192,7 +5192,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(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -5208,7 +5208,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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable and disable writing of frame buffer color components @@ -5226,7 +5226,7 @@ namespace OpenTK.Graphics.ES30 /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all True, indicating that the color components are written. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compiles a shader object @@ -5236,7 +5236,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(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compiles a shader object @@ -5246,7 +5246,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5277,7 +5277,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5311,7 +5311,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5345,7 +5345,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5379,7 +5379,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5412,7 +5412,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5442,7 +5442,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5475,7 +5475,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5508,7 +5508,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5541,7 +5541,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5573,7 +5573,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5607,7 +5607,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5644,7 +5644,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5681,7 +5681,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5718,7 +5718,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5754,7 +5754,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5787,7 +5787,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5823,7 +5823,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5859,7 +5859,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5895,7 +5895,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5930,7 +5930,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5964,7 +5964,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6001,7 +6001,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6038,7 +6038,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6075,7 +6075,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6111,7 +6111,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6144,7 +6144,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6180,7 +6180,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6216,7 +6216,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6252,7 +6252,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -6287,7 +6287,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6327,7 +6327,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6370,7 +6370,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6413,7 +6413,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6456,7 +6456,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6498,7 +6498,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6537,7 +6537,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6579,7 +6579,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6621,7 +6621,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6663,7 +6663,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6704,7 +6704,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6726,7 +6726,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6748,7 +6748,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6769,7 +6769,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6790,7 +6790,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -6821,7 +6821,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES30.All target, Int32 level, OpenTK.Graphics.ES30.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -6851,7 +6851,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES30.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6882,7 +6882,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6912,7 +6912,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a three-dimensional texture subimage @@ -6946,7 +6946,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a three-dimensional texture subimage @@ -6979,13 +6979,13 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a program object /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a shader object @@ -6995,7 +6995,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES30.All type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES30.All type) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a shader object @@ -7004,7 +7004,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the type of shader to be created. Must be one of VertexShader or FragmentShader. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES30.ShaderType type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES30.ShaderType type) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -7014,7 +7014,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -7023,7 +7023,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES30.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES30.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7035,7 +7035,7 @@ namespace OpenTK.Graphics.ES30 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7050,7 +7050,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7065,7 +7065,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7080,7 +7080,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -7094,7 +7094,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7120,7 +7120,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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7146,7 +7146,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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7172,7 +7172,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7198,7 +7198,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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7224,7 +7224,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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7250,7 +7250,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7275,7 +7275,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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7300,7 +7300,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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7325,7 +7325,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7350,7 +7350,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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7375,7 +7375,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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -7400,7 +7400,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES30.DebugSourceControl source, OpenTK.Graphics.ES30.DebugTypeControl type, OpenTK.Graphics.ES30.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -7426,7 +7426,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, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -7452,7 +7452,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, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -7477,7 +7477,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, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, Int32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -7502,7 +7502,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, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES30.DebugSourceExternal source, OpenTK.Graphics.ES30.DebugType type, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7512,7 +7512,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7522,7 +7522,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7535,7 +7535,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7548,7 +7548,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7561,7 +7561,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7574,7 +7574,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7587,7 +7587,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -7600,7 +7600,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7610,7 +7610,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7620,7 +7620,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7633,7 +7633,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7646,7 +7646,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7659,7 +7659,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7672,7 +7672,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7685,7 +7685,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7698,7 +7698,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a program object @@ -7708,7 +7708,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(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a program object @@ -7718,7 +7718,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7728,7 +7728,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7738,7 +7738,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7751,7 +7751,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7764,7 +7764,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7777,7 +7777,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7790,7 +7790,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7803,7 +7803,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7816,7 +7816,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7826,7 +7826,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7836,7 +7836,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7849,7 +7849,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7862,7 +7862,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7875,7 +7875,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7888,7 +7888,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7901,7 +7901,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7914,7 +7914,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7924,7 +7924,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7934,7 +7934,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7947,7 +7947,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7960,7 +7960,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7973,7 +7973,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7986,7 +7986,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7999,7 +7999,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -8012,7 +8012,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a shader object @@ -8022,7 +8022,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(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a shader object @@ -8032,7 +8032,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete a sync object @@ -8041,7 +8041,7 @@ namespace OpenTK.Graphics.ES30 /// The sync object to be deleted. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSync")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8051,7 +8051,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8061,7 +8061,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8074,7 +8074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8087,7 +8087,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8100,7 +8100,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8113,7 +8113,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8126,7 +8126,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -8139,7 +8139,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8149,7 +8149,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8159,7 +8159,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8172,7 +8172,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8185,7 +8185,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8198,7 +8198,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8211,7 +8211,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8224,7 +8224,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -8237,7 +8237,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8247,7 +8247,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8257,7 +8257,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8270,7 +8270,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8283,7 +8283,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8296,7 +8296,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8309,7 +8309,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8322,7 +8322,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -8335,7 +8335,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -8345,7 +8345,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES30.All func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES30.All func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -8354,7 +8354,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES30.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES30.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable writing into the depth buffer @@ -8363,7 +8363,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -8375,7 +8375,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detaches a shader object from a program object to which it is attached @@ -8388,7 +8388,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(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detaches a shader object from a program object to which it is attached @@ -8401,30 +8401,30 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES30.All cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES30.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8440,7 +8440,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8455,7 +8455,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a range of elements @@ -8474,7 +8474,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a range of elements @@ -8492,7 +8492,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8506,7 +8506,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, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8520,7 +8520,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, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8534,7 +8534,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 unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8547,7 +8547,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8560,7 +8560,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8573,7 +8573,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8592,7 +8592,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8614,7 +8614,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8636,7 +8636,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8658,7 +8658,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8679,7 +8679,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8697,7 +8697,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8718,7 +8718,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8739,7 +8739,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8760,7 +8760,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8780,7 +8780,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8802,7 +8802,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8827,7 +8827,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8852,7 +8852,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8877,7 +8877,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8901,7 +8901,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8922,7 +8922,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8946,7 +8946,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8970,7 +8970,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8994,7 +8994,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -9017,7 +9017,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9043,7 +9043,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, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9071,7 +9071,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9099,7 +9099,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9127,7 +9127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9155,7 +9155,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9181,7 +9181,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9209,7 +9209,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9237,7 +9237,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9265,7 +9265,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9293,7 +9293,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9318,7 +9318,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, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9345,7 +9345,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9372,7 +9372,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9399,7 +9399,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9426,7 +9426,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9451,7 +9451,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9478,7 +9478,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9505,7 +9505,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9532,7 +9532,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9559,7 +9559,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -9569,7 +9569,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES30.All cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -9578,7 +9578,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES30.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -9588,7 +9588,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(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -9598,22 +9598,22 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.ES30.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES30.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Create a new sync object and insert it into the GL command stream @@ -9626,7 +9626,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.ES30.All condition, OpenTK.Graphics.ES30.All flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES30.All condition, OpenTK.Graphics.ES30.All flags) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Create a new sync object and insert it into the GL command stream @@ -9638,19 +9638,19 @@ namespace OpenTK.Graphics.ES30 /// 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. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.ES30.SyncCondition condition, OpenTK.Graphics.ES30.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES30.SyncCondition condition, OpenTK.Graphics.ES30.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9666,7 +9666,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9682,7 +9682,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9697,7 +9697,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9712,7 +9712,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9732,7 +9732,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9752,7 +9752,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9771,7 +9771,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9790,7 +9790,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9813,7 +9813,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9836,7 +9836,7 @@ namespace OpenTK.Graphics.ES30 [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, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9858,7 +9858,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9880,7 +9880,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9903,7 +9903,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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9926,7 +9926,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, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9948,7 +9948,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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9970,7 +9970,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, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -9980,7 +9980,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -9989,14 +9989,14 @@ namespace OpenTK.Graphics.ES30 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES30.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES30.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10009,7 +10009,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, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10022,7 +10022,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, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10035,7 +10035,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10048,7 +10048,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, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10061,7 +10061,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, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -10074,7 +10074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate mipmaps for a specified texture target @@ -10084,7 +10084,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate mipmaps for a specified texture target @@ -10093,14 +10093,14 @@ namespace OpenTK.Graphics.ES30 /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture2D, Texture3D, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES30.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES30.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10113,7 +10113,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, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10126,7 +10126,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, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10139,7 +10139,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10152,7 +10152,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, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10165,7 +10165,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, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -10178,14 +10178,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10198,7 +10198,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, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10211,7 +10211,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, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10224,7 +10224,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10237,7 +10237,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, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10250,7 +10250,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, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10263,14 +10263,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10283,7 +10283,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, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10296,7 +10296,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, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10309,7 +10309,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10322,7 +10322,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, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10335,7 +10335,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, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10348,14 +10348,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static Int32 GenSampler() { throw new NotImplementedException(); } + public static Int32 GenSampler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10368,7 +10368,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, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10381,7 +10381,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, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10394,7 +10394,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10407,7 +10407,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, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10420,7 +10420,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, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10433,14 +10433,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10453,7 +10453,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, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10466,7 +10466,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, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10479,7 +10479,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10492,7 +10492,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, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10505,7 +10505,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, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10518,14 +10518,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10538,7 +10538,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, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10551,7 +10551,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, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10564,7 +10564,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10577,7 +10577,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, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10590,7 +10590,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, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10603,14 +10603,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10623,7 +10623,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, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10636,7 +10636,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, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10649,7 +10649,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10662,7 +10662,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, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10675,7 +10675,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, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10688,7 +10688,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10716,7 +10716,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10745,7 +10745,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10773,7 +10773,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10802,7 +10802,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 unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10830,7 +10830,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10859,7 +10859,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(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10887,7 +10887,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10916,7 +10916,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 unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10944,7 +10944,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10973,7 +10973,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11001,7 +11001,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11030,7 +11030,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 unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11058,7 +11058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11087,7 +11087,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(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11115,7 +11115,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -11144,7 +11144,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 unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11163,7 +11163,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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11182,7 +11182,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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11201,7 +11201,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11221,7 +11221,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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11241,7 +11241,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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11261,7 +11261,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 unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11280,7 +11280,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11299,7 +11299,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11318,7 +11318,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11338,7 +11338,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(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11358,7 +11358,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(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -11378,7 +11378,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 unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11400,7 +11400,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11422,7 +11422,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11444,7 +11444,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11466,7 +11466,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11488,7 +11488,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, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11511,7 +11511,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, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11533,7 +11533,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, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11556,7 +11556,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, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11578,7 +11578,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11601,7 +11601,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 unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11623,7 +11623,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11646,7 +11646,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(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11668,7 +11668,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11691,7 +11691,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(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11713,7 +11713,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES30.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11736,7 +11736,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 unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11755,7 +11755,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, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11774,7 +11774,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, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11793,7 +11793,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11812,7 +11812,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11831,7 +11831,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11850,7 +11850,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of an attribute variable @@ -11863,7 +11863,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(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of an attribute variable @@ -11876,20 +11876,20 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static bool GetBoolean(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static bool GetBoolean(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11897,7 +11897,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11905,7 +11905,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11913,28 +11913,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11951,7 +11951,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11968,7 +11968,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11985,7 +11985,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 unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -12001,7 +12001,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -12017,7 +12017,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -12033,7 +12033,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12050,7 +12050,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12067,7 +12067,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12084,7 +12084,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 unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12100,7 +12100,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12116,7 +12116,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -12132,7 +12132,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12148,7 +12148,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12167,7 +12167,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12186,7 +12186,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12205,7 +12205,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12223,7 +12223,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12238,7 +12238,7 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12256,7 +12256,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12274,7 +12274,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12292,7 +12292,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -12309,7 +12309,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12341,7 +12341,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, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12373,7 +12373,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, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12405,7 +12405,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12436,7 +12436,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12467,7 +12467,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12498,7 +12498,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12530,7 +12530,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12562,7 +12562,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12594,7 +12594,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12625,7 +12625,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12656,7 +12656,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -12687,26 +12687,26 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return error information /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.ES30.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static Single GetFloat(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static Single GetFloat(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12714,7 +12714,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12722,7 +12722,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12730,28 +12730,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the bindings of color numbers to user-defined varying out variables @@ -12764,7 +12764,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the bindings of color numbers to user-defined varying out variables @@ -12777,7 +12777,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12797,7 +12797,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12817,7 +12817,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12837,7 +12837,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 unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12856,7 +12856,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12875,7 +12875,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12894,11 +12894,11 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, OpenTK.Graphics.ES30.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.ES30.ResetStatus GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.ResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12907,7 +12907,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12916,7 +12916,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12925,7 +12925,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12934,7 +12934,7 @@ namespace OpenTK.Graphics.ES30 [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12943,7 +12943,7 @@ namespace OpenTK.Graphics.ES30 [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12952,7 +12952,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12960,7 +12960,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12968,7 +12968,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12976,7 +12976,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12984,7 +12984,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12992,7 +12992,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13000,20 +13000,20 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or 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(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or 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(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13021,7 +13021,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13029,7 +13029,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13037,28 +13037,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13067,7 +13067,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13076,7 +13076,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13085,7 +13085,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13094,7 +13094,7 @@ namespace OpenTK.Graphics.ES30 [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13103,7 +13103,7 @@ namespace OpenTK.Graphics.ES30 [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13112,7 +13112,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13120,7 +13120,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13128,7 +13128,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13136,7 +13136,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13144,7 +13144,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13152,7 +13152,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -13160,20 +13160,20 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static Int32 GetInteger(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static Int32 GetInteger(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -13181,7 +13181,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -13189,7 +13189,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -13197,28 +13197,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13241,7 +13241,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, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13264,7 +13264,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, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13287,7 +13287,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 unsafe void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13309,7 +13309,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, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13331,7 +13331,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, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -13353,7 +13353,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.ES30.ImageTarget target, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, OpenTK.Graphics.ES30.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13362,7 +13362,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13371,7 +13371,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13380,7 +13380,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13389,7 +13389,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13398,7 +13398,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13407,7 +13407,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13416,7 +13416,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13425,7 +13425,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13434,7 +13434,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13443,7 +13443,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13452,7 +13452,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13461,7 +13461,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13470,7 +13470,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13479,7 +13479,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -13488,7 +13488,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13511,7 +13511,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13534,7 +13534,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13557,7 +13557,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13580,7 +13580,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, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13603,7 +13603,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, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13626,7 +13626,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13648,7 +13648,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13670,7 +13670,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13692,7 +13692,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13714,7 +13714,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13736,7 +13736,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -13758,7 +13758,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13778,7 +13778,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13798,7 +13798,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13818,7 +13818,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13840,7 +13840,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13862,7 +13862,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13884,7 +13884,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13906,7 +13906,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13928,7 +13928,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13950,7 +13950,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13972,7 +13972,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13994,7 +13994,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -14016,7 +14016,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -14038,7 +14038,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -14060,7 +14060,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -14082,7 +14082,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14095,7 +14095,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14111,7 +14111,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14127,7 +14127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14143,7 +14143,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14158,7 +14158,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14170,7 +14170,7 @@ namespace OpenTK.Graphics.ES30 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14185,7 +14185,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14200,7 +14200,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14215,7 +14215,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -14229,7 +14229,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES30.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14251,7 +14251,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14275,7 +14275,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14299,7 +14299,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14323,7 +14323,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14347,7 +14347,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14369,7 +14369,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14393,7 +14393,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14417,7 +14417,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14441,7 +14441,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14465,7 +14465,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14487,7 +14487,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14511,7 +14511,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14535,7 +14535,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14559,7 +14559,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14583,7 +14583,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14605,7 +14605,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14629,7 +14629,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14653,7 +14653,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14677,7 +14677,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -14701,7 +14701,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -14720,7 +14720,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -14739,7 +14739,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -14758,7 +14758,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -14777,7 +14777,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14794,7 +14794,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14811,7 +14811,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14828,7 +14828,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 unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14844,7 +14844,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14860,7 +14860,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14876,7 +14876,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14893,7 +14893,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(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14910,7 +14910,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(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14927,7 +14927,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 unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14943,7 +14943,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14959,7 +14959,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14975,7 +14975,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES30.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -14992,7 +14992,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15009,7 +15009,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15026,7 +15026,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 unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15042,7 +15042,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15058,7 +15058,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -15074,7 +15074,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15091,7 +15091,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15108,7 +15108,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15125,7 +15125,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 unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15141,7 +15141,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15157,7 +15157,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15173,7 +15173,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15190,7 +15190,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(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15207,7 +15207,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(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15224,7 +15224,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 unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15240,7 +15240,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15256,7 +15256,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -15272,7 +15272,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15289,7 +15289,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15306,7 +15306,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15323,7 +15323,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 unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15339,7 +15339,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15355,7 +15355,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -15371,7 +15371,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15388,7 +15388,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15405,7 +15405,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15422,7 +15422,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 unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15438,7 +15438,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15454,7 +15454,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15470,7 +15470,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15487,7 +15487,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(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15504,7 +15504,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(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15521,7 +15521,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 unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15537,7 +15537,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15553,7 +15553,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15569,7 +15569,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15586,7 +15586,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15603,7 +15603,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15620,7 +15620,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 unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15636,7 +15636,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15652,7 +15652,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15668,7 +15668,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15685,7 +15685,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(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15702,7 +15702,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(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15719,7 +15719,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 unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15735,7 +15735,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15751,7 +15751,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -15767,7 +15767,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15786,7 +15786,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15805,7 +15805,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15824,7 +15824,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15843,7 +15843,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15860,7 +15860,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15877,7 +15877,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15894,7 +15894,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 unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15910,7 +15910,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15926,7 +15926,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15942,7 +15942,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15959,7 +15959,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(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15976,7 +15976,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(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15993,7 +15993,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 unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -16009,7 +16009,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -16025,7 +16025,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -16041,7 +16041,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES30.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16061,7 +16061,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, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16081,7 +16081,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, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16101,7 +16101,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 unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.All shadertype, OpenTK.Graphics.ES30.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16120,7 +16120,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, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16139,7 +16139,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, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -16158,7 +16158,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES30.ShaderType shadertype, OpenTK.Graphics.ES30.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -16177,7 +16177,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -16196,7 +16196,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -16215,7 +16215,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -16234,7 +16234,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -16244,7 +16244,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES30.All name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.All name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -16253,7 +16253,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant, one of Extensions, Renderer, ShadingLanguageVersion, Vendor, or Version. glGetStringi accepts only the Extensions token. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES30.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -16267,7 +16267,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(); } + public static String GetString(OpenTK.Graphics.ES30.All name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -16281,7 +16281,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, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.All name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -16294,7 +16294,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(); } + public static String GetString(OpenTK.Graphics.ES30.StringNameIndexed name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -16307,7 +16307,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, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES30.StringNameIndexed name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16330,7 +16330,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16353,7 +16353,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16376,7 +16376,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 unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16398,7 +16398,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16420,7 +16420,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -16442,7 +16442,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES30.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16459,7 +16459,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16476,7 +16476,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16493,7 +16493,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 unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16509,7 +16509,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16525,7 +16525,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16541,7 +16541,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16558,7 +16558,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16575,7 +16575,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16592,7 +16592,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 unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16608,7 +16608,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16624,7 +16624,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -16640,7 +16640,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16669,7 +16669,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16697,7 +16697,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16726,7 +16726,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 unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16754,7 +16754,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16783,7 +16783,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(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16811,7 +16811,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16840,7 +16840,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 unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -16868,7 +16868,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16881,7 +16881,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16894,7 +16894,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16910,7 +16910,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, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16926,7 +16926,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, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16942,7 +16942,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16958,7 +16958,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16974,7 +16974,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16990,7 +16990,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17009,7 +17009,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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17028,7 +17028,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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17047,7 +17047,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17066,7 +17066,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17085,7 +17085,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -17104,7 +17104,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17120,7 +17120,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, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17136,7 +17136,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, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17152,7 +17152,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17168,7 +17168,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17184,7 +17184,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -17200,7 +17200,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of a uniform variable @@ -17213,7 +17213,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(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of a uniform variable @@ -17226,7 +17226,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -17242,7 +17242,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -17258,7 +17258,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -17274,7 +17274,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17291,7 +17291,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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17308,7 +17308,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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17325,7 +17325,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 unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17341,7 +17341,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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17357,7 +17357,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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17373,7 +17373,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17390,7 +17390,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(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17407,7 +17407,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(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17424,7 +17424,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 unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17440,7 +17440,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17456,7 +17456,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17472,7 +17472,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17480,7 +17480,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17488,7 +17488,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17496,7 +17496,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17504,7 +17504,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17512,7 +17512,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [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, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -17520,7 +17520,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [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, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17537,7 +17537,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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17554,7 +17554,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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17571,7 +17571,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 unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17587,7 +17587,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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17603,7 +17603,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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17619,7 +17619,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17636,7 +17636,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(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17653,7 +17653,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(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17670,7 +17670,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 unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17686,7 +17686,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17702,7 +17702,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -17718,7 +17718,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES30.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17735,7 +17735,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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17754,7 +17754,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17773,7 +17773,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17792,7 +17792,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17811,7 +17811,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17827,7 +17827,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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17845,7 +17845,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17863,7 +17863,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17881,7 +17881,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17899,7 +17899,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17916,7 +17916,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(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17935,7 +17935,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17954,7 +17954,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17973,7 +17973,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -17992,7 +17992,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18008,7 +18008,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18026,7 +18026,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18044,7 +18044,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18062,7 +18062,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -18080,7 +18080,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES30.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -18093,7 +18093,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -18105,7 +18105,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES30.HintTarget target, OpenTK.Graphics.ES30.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES30.HintTarget target, OpenTK.Graphics.ES30.HintMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18122,7 +18122,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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18139,7 +18139,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, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18156,7 +18156,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 unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18172,7 +18172,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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18188,7 +18188,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, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -18204,7 +18204,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18233,7 +18233,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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18262,7 +18262,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, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18291,7 +18291,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 unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18319,7 +18319,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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18347,7 +18347,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, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -18375,7 +18375,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES30.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -18385,7 +18385,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(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -18395,7 +18395,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -18405,7 +18405,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES30.All cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -18414,7 +18414,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -18424,7 +18424,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(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -18434,7 +18434,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a program object @@ -18444,7 +18444,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(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a program object @@ -18454,7 +18454,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a query object @@ -18464,7 +18464,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(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a query object @@ -18474,7 +18474,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -18484,7 +18484,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(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -18494,7 +18494,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sampler object @@ -18504,7 +18504,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(); } + public static bool IsSampler(Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sampler object @@ -18514,7 +18514,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a shader object @@ -18524,7 +18524,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(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a shader object @@ -18534,7 +18534,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sync object @@ -18543,7 +18543,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSync")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -18553,7 +18553,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(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -18563,7 +18563,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a transform feedback object @@ -18573,7 +18573,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(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a transform feedback object @@ -18583,7 +18583,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -18593,7 +18593,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(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -18603,7 +18603,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the width of rasterized lines @@ -18612,7 +18612,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Links a program object @@ -18622,7 +18622,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(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Links a program object @@ -18632,7 +18632,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -18651,7 +18651,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -18670,7 +18670,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -18688,7 +18688,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -18706,7 +18706,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES30.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -18726,7 +18726,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, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -18746,7 +18746,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, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -18765,7 +18765,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, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -18784,7 +18784,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18799,7 +18799,7 @@ namespace OpenTK.Graphics.ES30 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18817,7 +18817,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18835,7 +18835,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18853,7 +18853,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -18870,13 +18870,13 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Pause transform feedback operations /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glPauseTransformFeedback")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -18889,7 +18889,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -18901,7 +18901,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES30.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES30.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the scale and units used to calculate depth values @@ -18913,13 +18913,13 @@ namespace OpenTK.Graphics.ES30 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -18938,7 +18938,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, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -18959,7 +18959,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -18980,7 +18980,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19001,7 +19001,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19022,7 +19022,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19041,7 +19041,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19062,7 +19062,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19083,7 +19083,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19104,7 +19104,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -19125,7 +19125,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -19142,7 +19142,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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -19158,7 +19158,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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -19175,7 +19175,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(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -19191,7 +19191,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -19210,7 +19210,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, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -19229,7 +19229,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels @@ -19239,7 +19239,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.ES30.All src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES30.All src) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels @@ -19248,7 +19248,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a color buffer. Accepted values are Back, None, and ColorAttachmenti. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.ES30.ReadBufferMode src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES30.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// /// @@ -19261,7 +19261,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -19277,7 +19277,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19293,7 +19293,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19309,7 +19309,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19324,7 +19324,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] 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] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19336,7 +19336,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -19351,7 +19351,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19366,7 +19366,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19381,7 +19381,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19395,7 +19395,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19423,7 +19423,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19454,7 +19454,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19485,7 +19485,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19516,7 +19516,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19546,7 +19546,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19573,7 +19573,7 @@ namespace OpenTK.Graphics.ES30 /// Returns the pixel data. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19603,7 +19603,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19633,7 +19633,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19663,7 +19663,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19692,13 +19692,13 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Release resources consumed by the implementation's shader compiler /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -19717,7 +19717,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -19735,7 +19735,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES30.RenderbufferTarget target, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -19757,7 +19757,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -19778,13 +19778,13 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Resume transform feedback operations /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glResumeTransformFeedback")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify multisample coverage parameters @@ -19796,7 +19796,7 @@ namespace OpenTK.Graphics.ES30 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19813,7 +19813,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(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19829,7 +19829,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(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19846,7 +19846,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(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19862,7 +19862,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19879,7 +19879,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, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19896,7 +19896,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 unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19912,7 +19912,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, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19928,7 +19928,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19945,7 +19945,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(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19962,7 +19962,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 unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19978,7 +19978,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -19994,7 +19994,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20011,7 +20011,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(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20027,7 +20027,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(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20044,7 +20044,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(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20060,7 +20060,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20077,7 +20077,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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20094,7 +20094,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 unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20110,7 +20110,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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20126,7 +20126,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20143,7 +20143,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(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20160,7 +20160,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 unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20176,7 +20176,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20192,7 +20192,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES30.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define the scissor box @@ -20210,7 +20210,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20233,7 +20233,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, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20258,7 +20258,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20283,7 +20283,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20308,7 +20308,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20333,7 +20333,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20355,7 +20355,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20379,7 +20379,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20403,7 +20403,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20427,7 +20427,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20451,7 +20451,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20474,7 +20474,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, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20499,7 +20499,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20524,7 +20524,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20549,7 +20549,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20574,7 +20574,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20596,7 +20596,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20620,7 +20620,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20644,7 +20644,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20668,7 +20668,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20692,7 +20692,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20715,7 +20715,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 unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20740,7 +20740,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20765,7 +20765,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20790,7 +20790,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20815,7 +20815,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20837,7 +20837,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20861,7 +20861,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20885,7 +20885,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20909,7 +20909,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20933,7 +20933,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20956,7 +20956,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, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20981,7 +20981,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21006,7 +21006,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21031,7 +21031,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21056,7 +21056,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21078,7 +21078,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21102,7 +21102,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21126,7 +21126,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21150,7 +21150,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21174,7 +21174,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21197,7 +21197,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, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21222,7 +21222,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21247,7 +21247,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21272,7 +21272,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21297,7 +21297,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21319,7 +21319,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21343,7 +21343,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21367,7 +21367,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21391,7 +21391,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21415,7 +21415,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21438,7 +21438,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 unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21463,7 +21463,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21488,7 +21488,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21513,7 +21513,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21538,7 +21538,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21560,7 +21560,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21584,7 +21584,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21608,7 +21608,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21632,7 +21632,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21656,7 +21656,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES30.ShaderBinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21675,7 +21675,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, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21694,7 +21694,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, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21713,7 +21713,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21732,7 +21732,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21751,7 +21751,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21770,7 +21770,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21787,7 +21787,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(); } + public static void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21804,7 +21804,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21820,7 +21820,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(); } + public static void StencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21836,7 +21836,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21856,7 +21856,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(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21876,7 +21876,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21895,7 +21895,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(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21914,7 +21914,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -21924,7 +21924,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(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -21934,7 +21934,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21948,7 +21948,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(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21962,7 +21962,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21975,7 +21975,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(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES30.StencilFace face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21988,7 +21988,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES30.StencilFace face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -22004,7 +22004,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES30.All fail, OpenTK.Graphics.ES30.All zfail, OpenTK.Graphics.ES30.All zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES30.All fail, OpenTK.Graphics.ES30.All zfail, OpenTK.Graphics.ES30.All zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -22019,7 +22019,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES30.StencilOp fail, OpenTK.Graphics.ES30.StencilOp zfail, OpenTK.Graphics.ES30.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES30.StencilOp fail, OpenTK.Graphics.ES30.StencilOp zfail, OpenTK.Graphics.ES30.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -22038,7 +22038,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All sfail, OpenTK.Graphics.ES30.All dpfail, OpenTK.Graphics.ES30.All dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All sfail, OpenTK.Graphics.ES30.All dpfail, OpenTK.Graphics.ES30.All dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -22056,7 +22056,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilOp sfail, OpenTK.Graphics.ES30.StencilOp dpfail, OpenTK.Graphics.ES30.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES30.StencilFace face, OpenTK.Graphics.ES30.StencilOp sfail, OpenTK.Graphics.ES30.StencilOp dpfail, OpenTK.Graphics.ES30.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22090,7 +22090,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22127,7 +22127,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22164,7 +22164,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22201,7 +22201,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22237,7 +22237,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22270,7 +22270,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22306,7 +22306,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22342,7 +22342,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22378,7 +22378,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -22413,7 +22413,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22450,7 +22450,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22490,7 +22490,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22530,7 +22530,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22570,7 +22570,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22609,7 +22609,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22645,7 +22645,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22684,7 +22684,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22723,7 +22723,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22762,7 +22762,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22800,7 +22800,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22816,7 +22816,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22831,7 +22831,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22848,7 +22848,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22865,7 +22865,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 unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22881,7 +22881,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22897,7 +22897,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22913,7 +22913,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22928,7 +22928,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22945,7 +22945,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22962,7 +22962,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 unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22978,7 +22978,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22994,7 +22994,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -23016,7 +23016,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -23037,7 +23037,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -23062,7 +23062,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -23086,7 +23086,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23120,7 +23120,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23157,7 +23157,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23194,7 +23194,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23231,7 +23231,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23267,7 +23267,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23300,7 +23300,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23336,7 +23336,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23372,7 +23372,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23408,7 +23408,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -23443,7 +23443,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23483,7 +23483,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23526,7 +23526,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23569,7 +23569,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23612,7 +23612,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23654,7 +23654,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23693,7 +23693,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23735,7 +23735,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23777,7 +23777,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23819,7 +23819,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23860,7 +23860,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23880,7 +23880,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, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23899,7 +23899,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, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23919,7 +23919,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(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.All bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23938,7 +23938,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES30.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23950,7 +23950,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23966,7 +23966,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, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23982,7 +23982,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, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23998,7 +23998,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24010,7 +24010,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24026,7 +24026,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, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24042,7 +24042,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, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24058,7 +24058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24071,7 +24071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24087,7 +24087,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24103,7 +24103,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24119,7 +24119,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24134,7 +24134,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24150,7 +24150,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24166,7 +24166,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24182,7 +24182,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24197,7 +24197,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24213,7 +24213,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24229,7 +24229,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24245,7 +24245,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24261,7 +24261,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24277,7 +24277,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24293,7 +24293,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24311,7 +24311,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24327,7 +24327,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24343,7 +24343,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24359,7 +24359,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24377,7 +24377,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24393,7 +24393,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24409,7 +24409,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24425,7 +24425,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24444,7 +24444,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24460,7 +24460,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24476,7 +24476,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24492,7 +24492,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24513,7 +24513,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24529,7 +24529,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24545,7 +24545,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24561,7 +24561,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24582,7 +24582,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24598,7 +24598,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24614,7 +24614,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24630,7 +24630,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24652,7 +24652,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24668,7 +24668,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24684,7 +24684,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24700,7 +24700,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Assign a binding point to an active uniform block @@ -24716,7 +24716,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(); } + public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Assign a binding point to an active uniform block @@ -24732,7 +24732,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24741,7 +24741,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24750,7 +24750,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24759,7 +24759,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24768,7 +24768,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24777,7 +24777,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24786,7 +24786,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24795,7 +24795,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24804,7 +24804,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24813,7 +24813,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24822,7 +24822,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24831,7 +24831,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24840,7 +24840,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24849,7 +24849,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24858,7 +24858,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24867,7 +24867,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24876,7 +24876,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24885,7 +24885,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24894,7 +24894,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24903,7 +24903,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24912,7 +24912,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24921,7 +24921,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24930,7 +24930,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24939,7 +24939,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24948,7 +24948,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24957,7 +24957,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24966,7 +24966,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24975,18 +24975,18 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.ES30.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES30.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Installs a program object as part of current rendering state @@ -24996,7 +24996,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(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Installs a program object as part of current rendering state @@ -25006,7 +25006,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -25016,7 +25016,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(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -25026,7 +25026,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25039,7 +25039,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(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25052,7 +25052,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25065,7 +25065,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25078,7 +25078,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25094,7 +25094,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(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25110,7 +25110,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25123,7 +25123,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25136,7 +25136,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25149,7 +25149,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25162,7 +25162,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25175,7 +25175,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25188,7 +25188,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25207,7 +25207,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(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25226,7 +25226,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25239,7 +25239,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25252,7 +25252,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25265,7 +25265,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25278,7 +25278,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25291,7 +25291,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25304,7 +25304,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25326,7 +25326,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(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25348,7 +25348,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25361,7 +25361,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25374,7 +25374,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25387,7 +25387,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25400,7 +25400,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25413,7 +25413,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -25426,7 +25426,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -25439,7 +25439,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -25452,7 +25452,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25462,7 +25462,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25472,49 +25472,49 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25524,28 +25524,28 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25556,7 +25556,7 @@ namespace OpenTK.Graphics.ES30 [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25569,7 +25569,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25582,7 +25582,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25595,7 +25595,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25608,7 +25608,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25618,7 +25618,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(size,type,stride)] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25630,7 +25630,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25642,7 +25642,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25654,7 +25654,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25666,7 +25666,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25677,7 +25677,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25690,7 +25690,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25703,7 +25703,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25716,7 +25716,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25729,7 +25729,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25739,7 +25739,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(size,type,stride)] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25751,7 +25751,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25763,7 +25763,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25775,7 +25775,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25787,7 +25787,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25813,7 +25813,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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25841,7 +25841,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25869,7 +25869,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25897,7 +25897,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25925,7 +25925,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25950,7 +25950,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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25977,7 +25977,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26004,7 +26004,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26031,7 +26031,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26058,7 +26058,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26084,7 +26084,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(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26112,7 +26112,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26140,7 +26140,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26168,7 +26168,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26196,7 +26196,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26221,7 +26221,7 @@ namespace OpenTK.Graphics.ES30 /// [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26248,7 +26248,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26275,7 +26275,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26302,7 +26302,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -26329,7 +26329,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES30.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the viewport @@ -26347,7 +26347,7 @@ namespace OpenTK.Graphics.ES30 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -26364,7 +26364,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(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -26381,7 +26381,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, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -26397,7 +26397,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(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -26413,7 +26413,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, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -26423,7 +26423,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// @@ -26431,19 +26431,19 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -26456,7 +26456,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(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -26469,7 +26469,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -26483,7 +26483,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(); } + public static void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -26497,7 +26497,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, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -26510,7 +26510,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(); } + public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -26523,7 +26523,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, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES30.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -26539,7 +26539,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -26555,7 +26555,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -26574,7 +26574,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -26593,7 +26593,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -26603,7 +26603,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(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -26613,7 +26613,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26623,7 +26623,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26632,7 +26632,7 @@ namespace OpenTK.Graphics.ES30 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26646,7 +26646,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26659,7 +26659,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26673,7 +26673,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26686,7 +26686,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26703,7 +26703,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26719,7 +26719,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26736,7 +26736,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26752,7 +26752,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -26766,7 +26766,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -26780,7 +26780,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26802,7 +26802,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26824,7 +26824,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26843,7 +26843,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26862,7 +26862,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26883,7 +26883,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26904,7 +26904,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26925,7 +26925,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26946,7 +26946,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26967,7 +26967,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26988,7 +26988,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27009,7 +27009,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27030,7 +27030,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27049,7 +27049,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27068,7 +27068,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27089,7 +27089,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27110,7 +27110,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27131,7 +27131,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27152,7 +27152,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27173,7 +27173,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27194,7 +27194,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27215,7 +27215,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -27236,7 +27236,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES30.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27246,7 +27246,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27256,7 +27256,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27266,7 +27266,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -27276,7 +27276,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27286,7 +27286,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27296,7 +27296,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27306,7 +27306,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27316,7 +27316,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27325,7 +27325,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27334,7 +27334,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27343,7 +27343,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -27352,7 +27352,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES30.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27360,7 +27360,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27368,7 +27368,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27376,7 +27376,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27384,7 +27384,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27392,7 +27392,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -27400,7 +27400,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27422,7 +27422,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27446,7 +27446,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27470,7 +27470,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27494,7 +27494,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27518,7 +27518,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27540,7 +27540,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27564,7 +27564,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27588,7 +27588,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27612,7 +27612,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27636,7 +27636,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27676,7 +27676,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27718,7 +27718,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, 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, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27760,7 +27760,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, 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, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27802,7 +27802,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, 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, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27844,7 +27844,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, 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, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27884,7 +27884,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27926,7 +27926,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, 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, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27968,7 +27968,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, 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, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -28010,7 +28010,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, 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, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -28052,7 +28052,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, 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, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -28072,7 +28072,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -28092,7 +28092,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -28144,7 +28144,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -28196,49 +28196,49 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -28250,7 +28250,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -28265,61 +28265,61 @@ namespace OpenTK.Graphics.ES30 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES30.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28329,7 +28329,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28339,7 +28339,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28352,7 +28352,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28365,7 +28365,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28378,7 +28378,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28391,7 +28391,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28404,7 +28404,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -28417,7 +28417,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28427,7 +28427,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28437,7 +28437,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28450,7 +28450,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, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28463,7 +28463,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, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28476,7 +28476,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28489,7 +28489,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, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28502,7 +28502,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, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -28515,75 +28515,75 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -28591,7 +28591,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -28599,7 +28599,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES30.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -28607,7 +28607,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments) { throw new NotImplementedException(); } + public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES30.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES30.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28630,7 +28630,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28653,7 +28653,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28675,7 +28675,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28697,7 +28697,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -28716,7 +28716,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -28734,7 +28734,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28748,7 +28748,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(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28762,7 +28762,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(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28776,7 +28776,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28789,7 +28789,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(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28802,7 +28802,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(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28815,7 +28815,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28823,7 +28823,7 @@ namespace OpenTK.Graphics.ES30 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28831,7 +28831,7 @@ namespace OpenTK.Graphics.ES30 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28839,7 +28839,7 @@ namespace OpenTK.Graphics.ES30 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28861,7 +28861,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28886,7 +28886,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28911,7 +28911,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28936,7 +28936,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28960,7 +28960,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28981,7 +28981,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -29005,7 +29005,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -29029,7 +29029,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -29053,7 +29053,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -29076,7 +29076,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29102,7 +29102,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29128,7 +29128,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29156,7 +29156,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29184,7 +29184,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29212,7 +29212,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29240,7 +29240,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29268,7 +29268,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29296,7 +29296,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29324,7 +29324,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29352,7 +29352,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29377,7 +29377,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29402,7 +29402,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29429,7 +29429,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29456,7 +29456,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29483,7 +29483,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29510,7 +29510,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29537,7 +29537,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29564,7 +29564,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29591,7 +29591,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -29618,7 +29618,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29647,7 +29647,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29676,7 +29676,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29707,7 +29707,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29738,7 +29738,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29769,7 +29769,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29800,7 +29800,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29831,7 +29831,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29862,7 +29862,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29893,7 +29893,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29924,7 +29924,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29952,7 +29952,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29980,7 +29980,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30010,7 +30010,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30040,7 +30040,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30070,7 +30070,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30100,7 +30100,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30130,7 +30130,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30160,7 +30160,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30190,7 +30190,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30220,7 +30220,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30245,7 +30245,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30273,7 +30273,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30301,7 +30301,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30329,7 +30329,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30356,7 +30356,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30380,7 +30380,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30407,7 +30407,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30434,7 +30434,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30461,7 +30461,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -30487,7 +30487,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30509,7 +30509,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30534,7 +30534,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30559,7 +30559,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30584,7 +30584,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30608,7 +30608,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30629,7 +30629,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30653,7 +30653,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30677,7 +30677,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30701,7 +30701,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30724,7 +30724,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30753,7 +30753,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30784,7 +30784,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30815,7 +30815,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30846,7 +30846,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30877,7 +30877,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30906,7 +30906,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30937,7 +30937,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30968,7 +30968,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30999,7 +30999,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31030,7 +31030,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31058,7 +31058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31088,7 +31088,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31118,7 +31118,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31148,7 +31148,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31178,7 +31178,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31206,7 +31206,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31236,7 +31236,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31266,7 +31266,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31296,7 +31296,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -31326,7 +31326,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -31340,7 +31340,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES30.All mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES30.All mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -31354,7 +31354,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES30.All mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES30.All mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -31367,7 +31367,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -31380,7 +31380,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -31397,7 +31397,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.All mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.All mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -31414,7 +31414,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.All mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.All mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -31430,7 +31430,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -31446,7 +31446,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -31457,7 +31457,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -31468,18 +31468,18 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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 = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES30.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES30.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -31495,7 +31495,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -31511,7 +31511,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -31526,7 +31526,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -31541,21 +31541,21 @@ namespace OpenTK.Graphics.ES30 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -31566,7 +31566,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -31577,7 +31577,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -31597,7 +31597,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -31617,7 +31617,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -31636,7 +31636,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -31655,14 +31655,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31675,7 +31675,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31688,7 +31688,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31701,7 +31701,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31714,7 +31714,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31727,7 +31727,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31740,14 +31740,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31760,7 +31760,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, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31773,7 +31773,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, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31786,7 +31786,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31799,7 +31799,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, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31812,7 +31812,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, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31825,54 +31825,54 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static Int32 GenSemaphore() { throw new NotImplementedException(); } + public static Int32 GenSemaphore() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31885,7 +31885,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31898,23 +31898,23 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31923,7 +31923,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31932,7 +31932,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31941,7 +31941,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31950,7 +31950,7 @@ namespace OpenTK.Graphics.ES30 [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, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31959,7 +31959,7 @@ namespace OpenTK.Graphics.ES30 [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, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31968,7 +31968,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31976,7 +31976,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31984,7 +31984,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31992,7 +31992,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -32000,7 +32000,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -32008,7 +32008,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -32016,7 +32016,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES30.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32025,7 +32025,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32034,7 +32034,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32043,7 +32043,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32051,7 +32051,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32059,7 +32059,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32067,7 +32067,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32076,7 +32076,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32085,7 +32085,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32094,7 +32094,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32102,7 +32102,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32110,7 +32110,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -32118,7 +32118,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32127,7 +32127,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32136,7 +32136,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32145,7 +32145,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32154,7 +32154,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32163,7 +32163,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32172,7 +32172,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32181,7 +32181,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32190,7 +32190,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32199,7 +32199,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32208,7 +32208,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32217,7 +32217,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -32226,7 +32226,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32248,7 +32248,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32270,7 +32270,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32292,7 +32292,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32314,7 +32314,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32336,7 +32336,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -32358,7 +32358,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32378,7 +32378,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32398,7 +32398,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32418,7 +32418,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32438,7 +32438,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32458,7 +32458,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -32478,7 +32478,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32494,7 +32494,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(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32510,7 +32510,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(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32526,7 +32526,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32542,7 +32542,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32558,7 +32558,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -32574,7 +32574,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -32590,7 +32590,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -32606,7 +32606,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES30.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32615,7 +32615,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32624,7 +32624,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + public static void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32633,7 +32633,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32641,7 +32641,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32649,7 +32649,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -32657,7 +32657,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES30.QueryTarget target, OpenTK.Graphics.ES30.GetQueryParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32674,7 +32674,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32691,7 +32691,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32708,7 +32708,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32724,7 +32724,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32740,7 +32740,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32756,7 +32756,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32773,7 +32773,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(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32790,7 +32790,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(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32807,7 +32807,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32823,7 +32823,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32839,7 +32839,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32855,7 +32855,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32872,7 +32872,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(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32889,7 +32889,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(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32906,7 +32906,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32922,7 +32922,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(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32938,7 +32938,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(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32954,7 +32954,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32971,7 +32971,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(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32988,7 +32988,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(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33005,7 +33005,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33021,7 +33021,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33037,7 +33037,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33053,7 +33053,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33070,7 +33070,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33087,7 +33087,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33104,7 +33104,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33120,7 +33120,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33136,7 +33136,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -33152,7 +33152,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33169,7 +33169,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33186,7 +33186,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33203,7 +33203,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33219,7 +33219,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33235,7 +33235,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -33251,7 +33251,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES30.GetQueryObjectParam pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33259,7 +33259,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33267,7 +33267,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33275,7 +33275,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33283,7 +33283,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33291,7 +33291,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33299,7 +33299,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33307,7 +33307,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33315,7 +33315,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33323,7 +33323,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33332,7 +33332,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33341,7 +33341,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33350,7 +33350,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33358,7 +33358,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33366,7 +33366,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33374,7 +33374,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33383,7 +33383,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33392,7 +33392,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33401,7 +33401,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33409,7 +33409,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33417,7 +33417,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -33425,7 +33425,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33434,7 +33434,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33443,7 +33443,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33452,7 +33452,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33460,7 +33460,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33468,7 +33468,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33476,7 +33476,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33485,7 +33485,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33494,7 +33494,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33503,7 +33503,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33511,7 +33511,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33519,7 +33519,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -33527,7 +33527,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33535,7 +33535,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33543,7 +33543,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33551,7 +33551,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33559,7 +33559,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33567,7 +33567,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33575,20 +33575,20 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES30.All pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES30.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33596,7 +33596,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33604,7 +33604,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -33612,28 +33612,28 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES30.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -33643,7 +33643,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -33652,7 +33652,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -33662,7 +33662,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -33671,7 +33671,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33681,7 +33681,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33693,7 +33693,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33705,7 +33705,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33717,7 +33717,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33729,7 +33729,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33738,7 +33738,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33749,7 +33749,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33760,7 +33760,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33771,7 +33771,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33782,7 +33782,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33792,7 +33792,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33804,7 +33804,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33816,7 +33816,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33828,7 +33828,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33840,7 +33840,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33849,7 +33849,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33860,7 +33860,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33871,7 +33871,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33882,7 +33882,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33893,7 +33893,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33903,7 +33903,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33915,7 +33915,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33927,7 +33927,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33939,7 +33939,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33951,7 +33951,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33960,7 +33960,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33971,7 +33971,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33982,7 +33982,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33993,7 +33993,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34004,7 +34004,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34014,7 +34014,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34026,7 +34026,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34038,7 +34038,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34050,7 +34050,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34062,7 +34062,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34071,7 +34071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34082,7 +34082,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34093,7 +34093,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34104,7 +34104,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -34115,7 +34115,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -34124,7 +34124,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -34132,7 +34132,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -34141,7 +34141,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -34149,7 +34149,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34158,7 +34158,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34169,7 +34169,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34180,7 +34180,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34191,7 +34191,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34202,7 +34202,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34210,7 +34210,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34220,7 +34220,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34230,7 +34230,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34240,7 +34240,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34250,7 +34250,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34259,7 +34259,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34270,7 +34270,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34281,7 +34281,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34292,7 +34292,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34303,7 +34303,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34311,7 +34311,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34321,7 +34321,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34331,7 +34331,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34341,7 +34341,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34351,7 +34351,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34360,7 +34360,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34371,7 +34371,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34382,7 +34382,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34393,7 +34393,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34404,7 +34404,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34412,7 +34412,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34422,7 +34422,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34432,7 +34432,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34442,7 +34442,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34452,7 +34452,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34461,7 +34461,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34472,7 +34472,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34483,7 +34483,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34494,7 +34494,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34505,7 +34505,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34513,7 +34513,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34523,7 +34523,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34533,7 +34533,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34543,7 +34543,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -34553,13 +34553,13 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES30.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -34572,7 +34572,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -34585,19 +34585,19 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(Int32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(Int32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(UInt32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(UInt32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -34607,7 +34607,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(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -34617,7 +34617,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -34627,7 +34627,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(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -34637,19 +34637,19 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(Int32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(Int32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(UInt32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(UInt32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -34658,7 +34658,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void LabelObject(OpenTK.Graphics.ES30.All type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -34667,7 +34667,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void LabelObject(OpenTK.Graphics.ES30.All type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34687,7 +34687,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, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34707,7 +34707,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, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34727,7 +34727,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(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34747,7 +34747,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, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34766,7 +34766,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, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34785,7 +34785,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, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34804,7 +34804,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(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -34823,7 +34823,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, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES30.BufferTarget target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34832,7 +34832,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34841,7 +34841,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34850,7 +34850,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34858,7 +34858,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34866,7 +34866,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34874,7 +34874,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34883,7 +34883,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34892,7 +34892,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34901,7 +34901,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34909,7 +34909,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34917,7 +34917,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -34925,7 +34925,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES30.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -34945,7 +34945,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, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -34965,7 +34965,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, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -34985,7 +34985,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -35004,7 +35004,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, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -35023,7 +35023,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, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -35042,7 +35042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35061,7 +35061,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35083,7 +35083,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35105,7 +35105,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35127,7 +35127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35148,7 +35148,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35166,7 +35166,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35187,7 +35187,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35208,7 +35208,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35229,7 +35229,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -35249,7 +35249,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35275,7 +35275,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35303,7 +35303,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35331,7 +35331,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35359,7 +35359,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35387,7 +35387,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35413,7 +35413,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35441,7 +35441,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35469,7 +35469,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35497,7 +35497,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35525,7 +35525,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35551,7 +35551,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35579,7 +35579,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35607,7 +35607,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35635,7 +35635,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35663,7 +35663,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35688,7 +35688,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35715,7 +35715,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35742,7 +35742,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35769,7 +35769,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35796,7 +35796,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35821,7 +35821,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35848,7 +35848,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35875,7 +35875,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35902,7 +35902,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35929,7 +35929,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35954,7 +35954,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -35981,7 +35981,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -36008,7 +36008,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -36035,7 +36035,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -36062,7 +36062,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36085,7 +36085,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, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36110,7 +36110,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36135,7 +36135,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36160,7 +36160,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36185,7 +36185,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36208,7 +36208,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, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36233,7 +36233,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36258,7 +36258,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36283,7 +36283,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36308,7 +36308,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36331,7 +36331,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36356,7 +36356,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36381,7 +36381,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36406,7 +36406,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36431,7 +36431,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36453,7 +36453,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, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36477,7 +36477,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36501,7 +36501,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36525,7 +36525,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36549,7 +36549,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36571,7 +36571,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, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36595,7 +36595,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36619,7 +36619,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36643,7 +36643,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36667,7 +36667,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36689,7 +36689,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36713,7 +36713,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36737,7 +36737,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36761,7 +36761,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -36785,7 +36785,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES30.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36807,7 +36807,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36832,7 +36832,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36857,7 +36857,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36882,7 +36882,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36906,7 +36906,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.All mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36927,7 +36927,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36951,7 +36951,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36975,7 +36975,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -36999,7 +36999,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -37022,7 +37022,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES30.PrimitiveType mode, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37032,7 +37032,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37042,7 +37042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37052,7 +37052,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -37062,7 +37062,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37071,7 +37071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37080,7 +37080,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37089,7 +37089,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -37098,7 +37098,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_tessellation_shader] /// Specifies the parameters for patch primitives @@ -37110,18 +37110,18 @@ namespace OpenTK.Graphics.ES30 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] - public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_primitive_bounding_box] /// @@ -37133,7 +37133,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxEXT")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -37150,7 +37150,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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -37166,7 +37166,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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -37183,7 +37183,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(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -37199,7 +37199,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES30.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37215,7 +37215,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37231,7 +37231,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37250,7 +37250,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, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37269,7 +37269,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, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37288,7 +37288,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37307,7 +37307,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37326,7 +37326,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37345,7 +37345,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37361,7 +37361,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37377,7 +37377,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37396,7 +37396,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, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37415,7 +37415,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, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37434,7 +37434,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37453,7 +37453,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37472,7 +37472,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37491,7 +37491,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37507,7 +37507,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37526,7 +37526,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37545,7 +37545,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37564,7 +37564,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37583,7 +37583,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37602,7 +37602,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37621,7 +37621,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37640,7 +37640,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37659,7 +37659,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37678,7 +37678,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37697,7 +37697,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37716,7 +37716,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37735,7 +37735,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37754,7 +37754,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37773,7 +37773,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37792,7 +37792,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37811,7 +37811,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37830,7 +37830,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37849,7 +37849,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37868,7 +37868,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37887,7 +37887,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37906,7 +37906,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37928,7 +37928,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37950,7 +37950,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37969,7 +37969,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37988,7 +37988,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38007,7 +38007,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38026,7 +38026,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38045,7 +38045,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38064,7 +38064,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38086,7 +38086,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38108,7 +38108,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38127,7 +38127,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38146,7 +38146,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38165,7 +38165,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38184,7 +38184,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38203,7 +38203,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38222,7 +38222,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38244,7 +38244,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38263,7 +38263,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38282,7 +38282,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38301,7 +38301,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38326,7 +38326,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38351,7 +38351,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38370,7 +38370,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38389,7 +38389,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38408,7 +38408,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38427,7 +38427,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38446,7 +38446,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38465,7 +38465,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38490,7 +38490,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38515,7 +38515,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38534,7 +38534,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38553,7 +38553,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38572,7 +38572,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38591,7 +38591,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38610,7 +38610,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38629,7 +38629,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38654,7 +38654,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38673,7 +38673,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38692,7 +38692,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -38711,7 +38711,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38721,7 +38721,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38731,7 +38731,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38741,7 +38741,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38751,7 +38751,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38761,7 +38761,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38771,7 +38771,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38781,7 +38781,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38791,7 +38791,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38801,7 +38801,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38811,7 +38811,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38821,7 +38821,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38831,7 +38831,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38841,7 +38841,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38851,7 +38851,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38861,7 +38861,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38871,7 +38871,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38881,7 +38881,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38891,7 +38891,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38901,7 +38901,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38911,7 +38911,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38921,7 +38921,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38931,7 +38931,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38941,7 +38941,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38951,7 +38951,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38961,7 +38961,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38971,7 +38971,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38981,7 +38981,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38991,7 +38991,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39001,7 +39001,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39011,7 +39011,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39021,7 +39021,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39031,7 +39031,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39041,7 +39041,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39051,7 +39051,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39061,7 +39061,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39071,7 +39071,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39081,7 +39081,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39091,7 +39091,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39101,7 +39101,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39111,7 +39111,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39121,7 +39121,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -39131,7 +39131,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39141,7 +39141,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39151,7 +39151,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39161,7 +39161,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39171,7 +39171,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39181,7 +39181,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39191,7 +39191,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39201,7 +39201,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39211,7 +39211,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39221,7 +39221,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39231,7 +39231,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39241,7 +39241,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -39251,13 +39251,13 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -39270,7 +39270,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(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -39283,27 +39283,27 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] - public static void ReadBufferIndexed(OpenTK.Graphics.ES30.All src, Int32 index) { throw new NotImplementedException(); } + public static void ReadBufferIndexed(OpenTK.Graphics.ES30.All src, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39316,7 +39316,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39332,7 +39332,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39348,7 +39348,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39364,7 +39364,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39379,7 +39379,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] 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, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39391,7 +39391,7 @@ namespace OpenTK.Graphics.ES30 /// /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39406,7 +39406,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39421,7 +39421,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39436,7 +39436,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -39450,21 +39450,21 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -39486,7 +39486,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -39507,7 +39507,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39515,7 +39515,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39523,7 +39523,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39531,7 +39531,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39539,7 +39539,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39547,7 +39547,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39555,7 +39555,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39563,7 +39563,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39571,7 +39571,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39579,7 +39579,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39588,7 +39588,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39597,7 +39597,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39606,7 +39606,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.All pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39614,7 +39614,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39622,7 +39622,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39630,7 +39630,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39639,7 +39639,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39648,7 +39648,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39657,7 +39657,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.All pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39665,7 +39665,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39673,7 +39673,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39681,7 +39681,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES30.SemaphoreParameterName pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39693,7 +39693,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39704,7 +39704,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39716,7 +39716,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39727,7 +39727,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39739,7 +39739,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39750,7 +39750,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39762,7 +39762,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39773,7 +39773,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39785,7 +39785,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39796,7 +39796,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39808,7 +39808,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39819,7 +39819,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39836,7 +39836,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39853,7 +39853,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39869,7 +39869,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -39885,7 +39885,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39907,7 +39907,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39929,7 +39929,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39951,7 +39951,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -39973,7 +39973,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_sparse_texture] /// @@ -39986,7 +39986,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "EXT_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentEXT")] - public static void TexPageCommitment(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -39995,7 +39995,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40004,7 +40004,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40013,7 +40013,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40021,7 +40021,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40029,7 +40029,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40037,7 +40037,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40046,7 +40046,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40055,7 +40055,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40064,7 +40064,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40072,7 +40072,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40080,7 +40080,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -40088,7 +40088,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -40106,7 +40106,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -40128,7 +40128,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -40149,7 +40149,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES30.TextureTarget2d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -40174,7 +40174,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -40198,7 +40198,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 levels, OpenTK.Graphics.ES30.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40210,7 +40210,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40222,7 +40222,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40233,7 +40233,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40244,7 +40244,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40257,7 +40257,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40270,7 +40270,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40282,7 +40282,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40294,7 +40294,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40308,7 +40308,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40322,7 +40322,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40335,7 +40335,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40348,7 +40348,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40362,7 +40362,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40376,7 +40376,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40389,7 +40389,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40402,7 +40402,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES30.TextureTarget target, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40417,7 +40417,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40432,7 +40432,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40446,7 +40446,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40460,7 +40460,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES30.TextureTarget target, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40470,7 +40470,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40480,7 +40480,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40491,7 +40491,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40502,7 +40502,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES30.All target, Int32 levels, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40514,7 +40514,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -40526,7 +40526,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40537,7 +40537,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40548,7 +40548,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40560,7 +40560,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40572,7 +40572,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40585,7 +40585,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40598,7 +40598,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40611,7 +40611,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40624,7 +40624,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40638,7 +40638,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -40652,7 +40652,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES30.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -40683,7 +40683,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -40714,7 +40714,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -40730,7 +40730,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(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -40746,21 +40746,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UseShaderProgram(OpenTK.Graphics.ES30.All type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES30.All type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -40770,7 +40770,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(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -40780,7 +40780,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -40793,7 +40793,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -40806,7 +40806,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40818,7 +40818,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40829,7 +40829,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40841,7 +40841,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40852,7 +40852,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40864,7 +40864,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40875,7 +40875,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40887,7 +40887,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40898,7 +40898,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40910,7 +40910,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40921,7 +40921,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES30.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40933,7 +40933,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -40944,7 +40944,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES30.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -40952,7 +40952,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -40960,7 +40960,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -40968,7 +40968,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.ES30.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } } @@ -40984,7 +40984,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -40996,7 +40996,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -41007,7 +41007,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -41018,7 +41018,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -41031,7 +41031,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -41044,7 +41044,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -41056,7 +41056,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -41068,33 +41068,33 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41102,7 +41102,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41110,7 +41110,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41119,7 +41119,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41128,7 +41128,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41137,7 +41137,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41146,7 +41146,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41155,7 +41155,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41164,7 +41164,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -41186,7 +41186,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -41207,21 +41207,21 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41229,7 +41229,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41237,7 +41237,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41245,7 +41245,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41253,7 +41253,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41261,7 +41261,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -41269,7 +41269,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } } @@ -41279,174 +41279,174 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41462,7 +41462,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41478,7 +41478,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41494,7 +41494,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41510,7 +41510,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41526,7 +41526,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41542,7 +41542,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41552,7 +41552,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41562,7 +41562,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41572,7 +41572,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41584,7 +41584,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41596,7 +41596,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41608,7 +41608,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41620,7 +41620,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41632,7 +41632,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41644,7 +41644,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41656,7 +41656,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41668,7 +41668,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41680,7 +41680,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41692,7 +41692,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41704,7 +41704,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41716,7 +41716,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41726,7 +41726,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41736,7 +41736,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41746,7 +41746,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41758,7 +41758,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41770,7 +41770,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41782,7 +41782,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41794,7 +41794,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41806,7 +41806,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41818,7 +41818,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41830,7 +41830,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41842,7 +41842,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41854,7 +41854,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41866,7 +41866,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41878,7 +41878,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41890,55 +41890,55 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41950,7 +41950,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41962,7 +41962,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41974,7 +41974,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41986,7 +41986,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -41998,7 +41998,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -42010,7 +42010,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -42018,7 +42018,7 @@ namespace OpenTK.Graphics.ES30 { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42030,7 +42030,7 @@ namespace OpenTK.Graphics.ES30 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42045,7 +42045,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42060,7 +42060,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42075,7 +42075,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -42089,7 +42089,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42115,7 +42115,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42141,7 +42141,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42167,7 +42167,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42193,7 +42193,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, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42219,7 +42219,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 UInt32 ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42245,7 +42245,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42270,7 +42270,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42295,7 +42295,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42320,7 +42320,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42345,7 +42345,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, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42370,7 +42370,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 UInt32 ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -42395,7 +42395,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -42421,7 +42421,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -42447,7 +42447,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, UInt32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -42472,7 +42472,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -42497,7 +42497,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, UInt32 id, OpenTK.Graphics.ES30.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42529,7 +42529,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, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42561,7 +42561,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, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42593,7 +42593,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42624,7 +42624,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42655,7 +42655,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42686,7 +42686,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42718,7 +42718,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42750,7 +42750,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42782,7 +42782,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42813,7 +42813,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42844,7 +42844,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSourceExternal sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES30.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -42875,11 +42875,11 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSourceExternal* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES30.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42888,7 +42888,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42897,7 +42897,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42906,7 +42906,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42915,7 +42915,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42924,7 +42924,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42933,7 +42933,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42942,7 +42942,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42951,7 +42951,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42960,7 +42960,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42969,7 +42969,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42978,7 +42978,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42987,7 +42987,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42996,7 +42996,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43005,7 +43005,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43014,7 +43014,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43037,7 +43037,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43060,7 +43060,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43083,7 +43083,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43106,7 +43106,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, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43129,7 +43129,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, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43152,7 +43152,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43174,7 +43174,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43196,7 +43196,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43218,7 +43218,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43240,7 +43240,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43262,7 +43262,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -43284,7 +43284,7 @@ namespace OpenTK.Graphics.ES30 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43304,7 +43304,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43324,7 +43324,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43344,7 +43344,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43366,7 +43366,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43388,7 +43388,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43410,7 +43410,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43432,7 +43432,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43454,7 +43454,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43476,7 +43476,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43498,7 +43498,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43520,7 +43520,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43542,7 +43542,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43564,7 +43564,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43586,7 +43586,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -43608,13 +43608,13 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -43623,7 +43623,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -43632,7 +43632,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -43641,7 +43641,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -43649,7 +43649,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -43669,7 +43669,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(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -43689,7 +43689,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, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -43708,7 +43708,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(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -43727,7 +43727,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ObjectLabel(OpenTK.Graphics.ES30.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43742,7 +43742,7 @@ namespace OpenTK.Graphics.ES30 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43760,7 +43760,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43778,7 +43778,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43796,7 +43796,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -43813,13 +43813,13 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -43838,7 +43838,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(); } + public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -43857,7 +43857,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void PushDebugGroup(OpenTK.Graphics.ES30.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43870,7 +43870,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.All format, OpenTK.Graphics.ES30.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43886,7 +43886,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43902,7 +43902,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43918,7 +43918,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43933,7 +43933,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] 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, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43945,7 +43945,7 @@ namespace OpenTK.Graphics.ES30 /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43960,7 +43960,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43975,7 +43975,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -43990,7 +43990,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -44004,7 +44004,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES30.PixelFormat format, OpenTK.Graphics.ES30.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -44021,7 +44021,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -44034,17 +44034,17 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -44081,7 +44081,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.All mask, OpenTK.Graphics.ES30.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -44117,13 +44117,13 @@ namespace OpenTK.Graphics.ES30 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES30.ClearBufferMask mask, OpenTK.Graphics.ES30.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -44145,7 +44145,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -44167,7 +44167,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.All readTarget, OpenTK.Graphics.ES30.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -44188,7 +44188,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -44209,57 +44209,57 @@ namespace OpenTK.Graphics.ES30 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES30.BufferTarget readTarget, OpenTK.Graphics.ES30.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageMaskNV")] - public static void CoverageMask(bool mask) { throw new NotImplementedException(); } + public static void CoverageMask(bool mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.ES30.All components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.ES30.All components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageOperationNV")] - public static void CoverageOperation(OpenTK.Graphics.ES30.All operation) { throw new NotImplementedException(); } + public static void CoverageOperation(OpenTK.Graphics.ES30.All operation) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44271,7 +44271,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44283,7 +44283,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44295,7 +44295,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44307,7 +44307,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44319,7 +44319,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44331,7 +44331,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44345,7 +44345,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44359,7 +44359,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44373,7 +44373,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44387,7 +44387,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44401,7 +44401,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44415,7 +44415,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44429,7 +44429,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44443,7 +44443,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44457,7 +44457,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44471,7 +44471,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44485,7 +44485,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44499,7 +44499,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44513,7 +44513,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44527,7 +44527,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44541,7 +44541,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44555,7 +44555,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44569,7 +44569,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44583,7 +44583,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44597,7 +44597,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44611,7 +44611,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44625,7 +44625,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44639,7 +44639,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44653,7 +44653,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44667,21 +44667,21 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44693,7 +44693,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44705,7 +44705,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44717,7 +44717,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44729,7 +44729,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44741,7 +44741,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44753,7 +44753,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44767,7 +44767,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44781,7 +44781,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44795,7 +44795,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44809,7 +44809,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44823,7 +44823,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44837,7 +44837,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44851,7 +44851,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44865,7 +44865,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44879,7 +44879,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44893,7 +44893,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44907,7 +44907,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44921,7 +44921,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44935,7 +44935,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44949,7 +44949,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44963,7 +44963,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44977,7 +44977,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44991,7 +44991,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45005,7 +45005,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45019,7 +45019,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45033,7 +45033,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45047,7 +45047,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45061,7 +45061,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45075,7 +45075,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45089,89 +45089,89 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45187,7 +45187,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45203,7 +45203,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45219,7 +45219,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45235,7 +45235,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45251,7 +45251,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -45267,7 +45267,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -45283,7 +45283,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -45299,21 +45299,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -45332,7 +45332,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -45350,7 +45350,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45364,7 +45364,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, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45378,7 +45378,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, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45392,7 +45392,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45405,7 +45405,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45418,7 +45418,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES30.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -45431,7 +45431,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES30.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45453,7 +45453,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45478,7 +45478,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45503,7 +45503,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45528,7 +45528,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45552,7 +45552,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45573,7 +45573,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45597,7 +45597,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45621,7 +45621,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45645,7 +45645,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -45668,7 +45668,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -45684,7 +45684,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -45700,7 +45700,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -45711,7 +45711,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -45722,35 +45722,35 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45759,7 +45759,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45768,7 +45768,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45777,7 +45777,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45786,7 +45786,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45795,7 +45795,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45804,85 +45804,85 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES30.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45890,7 +45890,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45898,7 +45898,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45906,7 +45906,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45914,7 +45914,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45922,7 +45922,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -45930,7 +45930,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45938,7 +45938,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45946,7 +45946,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45954,7 +45954,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45962,7 +45962,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45970,7 +45970,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -45978,7 +45978,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45988,7 +45988,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -45998,7 +45998,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES30.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -46009,7 +46009,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -46020,7 +46020,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -46031,7 +46031,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 samples, OpenTK.Graphics.ES30.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46039,7 +46039,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46047,7 +46047,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46055,7 +46055,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46063,7 +46063,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46071,7 +46071,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46079,169 +46079,169 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46249,7 +46249,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46257,7 +46257,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46267,7 +46267,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46277,7 +46277,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46287,7 +46287,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46297,7 +46297,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46307,7 +46307,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46317,7 +46317,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46329,7 +46329,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46341,7 +46341,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46353,7 +46353,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46367,7 +46367,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46381,7 +46381,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46395,7 +46395,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46409,7 +46409,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46423,7 +46423,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46437,7 +46437,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46451,7 +46451,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46465,7 +46465,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46479,7 +46479,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46493,7 +46493,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46507,7 +46507,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46521,7 +46521,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46533,7 +46533,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46545,7 +46545,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46557,7 +46557,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46571,7 +46571,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46585,7 +46585,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46599,7 +46599,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46613,7 +46613,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46627,7 +46627,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46641,7 +46641,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46655,7 +46655,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46669,7 +46669,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46683,7 +46683,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46697,7 +46697,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46711,7 +46711,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46725,7 +46725,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46733,7 +46733,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46741,7 +46741,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46749,7 +46749,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46757,7 +46757,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46765,7 +46765,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46773,7 +46773,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46781,7 +46781,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46789,7 +46789,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46797,7 +46797,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46805,7 +46805,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46813,7 +46813,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46821,7 +46821,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46835,7 +46835,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46849,7 +46849,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46863,7 +46863,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46877,7 +46877,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46891,7 +46891,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46905,7 +46905,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46921,7 +46921,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46937,7 +46937,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46953,7 +46953,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46969,7 +46969,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46985,7 +46985,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47001,7 +47001,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47017,7 +47017,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47033,7 +47033,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47049,7 +47049,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47065,7 +47065,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47081,7 +47081,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47097,7 +47097,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47113,7 +47113,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47129,7 +47129,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47145,7 +47145,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47161,7 +47161,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47177,7 +47177,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47193,7 +47193,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47209,7 +47209,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47225,7 +47225,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47241,7 +47241,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47257,7 +47257,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47273,7 +47273,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47289,7 +47289,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES30.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES30.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47298,7 +47298,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47307,7 +47307,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47316,7 +47316,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47324,7 +47324,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47332,7 +47332,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47340,7 +47340,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47349,7 +47349,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47358,7 +47358,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47367,7 +47367,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47375,7 +47375,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47383,7 +47383,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47391,7 +47391,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES30.TextureUnit texCoordSet, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47410,7 +47410,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47429,7 +47429,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47448,7 +47448,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES30.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47467,7 +47467,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47486,7 +47486,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES30.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -47505,33 +47505,33 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES30.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES30.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47547,7 +47547,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47563,7 +47563,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47579,7 +47579,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47595,7 +47595,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47611,7 +47611,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -47627,12 +47627,12 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47641,7 +47641,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47650,7 +47650,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -47663,7 +47663,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -47676,43 +47676,43 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47721,7 +47721,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47730,7 +47730,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47738,7 +47738,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47746,195 +47746,195 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES30.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47943,7 +47943,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47952,7 +47952,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47961,7 +47961,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47970,7 +47970,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47979,7 +47979,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -47988,7 +47988,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47997,7 +47997,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48006,7 +48006,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48015,7 +48015,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.ES30.All color, OpenTK.Graphics.ES30.All genMode, OpenTK.Graphics.ES30.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48026,7 +48026,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48039,7 +48039,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48052,7 +48052,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48065,7 +48065,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48078,7 +48078,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48089,7 +48089,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48102,7 +48102,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48115,7 +48115,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48128,7 +48128,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48141,7 +48141,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48152,7 +48152,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48165,7 +48165,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48178,7 +48178,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48191,7 +48191,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48204,7 +48204,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48215,7 +48215,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48228,7 +48228,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48241,7 +48241,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48254,7 +48254,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48267,7 +48267,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48278,7 +48278,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48291,7 +48291,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48304,7 +48304,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48317,7 +48317,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48330,7 +48330,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48341,7 +48341,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48354,7 +48354,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48367,7 +48367,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48380,7 +48380,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48393,7 +48393,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48402,7 +48402,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48413,7 +48413,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48424,7 +48424,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48435,7 +48435,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48446,7 +48446,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48455,7 +48455,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48466,7 +48466,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48477,7 +48477,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48488,7 +48488,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48499,18 +48499,18 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES30.All func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES30.All func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES30.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES30.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48518,7 +48518,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48526,7 +48526,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48534,7 +48534,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48542,7 +48542,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48550,7 +48550,7 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48558,12 +48558,12 @@ namespace OpenTK.Graphics.ES30 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.ES30.All genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.ES30.All genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48576,7 +48576,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48591,7 +48591,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48606,7 +48606,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48621,7 +48621,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48636,7 +48636,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48649,7 +48649,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48664,7 +48664,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48679,7 +48679,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48694,7 +48694,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48709,7 +48709,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48720,7 +48720,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48731,7 +48731,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48744,7 +48744,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48757,7 +48757,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48770,7 +48770,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48783,7 +48783,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48796,7 +48796,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48809,7 +48809,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48822,7 +48822,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48835,7 +48835,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathGlyphIndexRange(OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48849,7 +48849,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48865,7 +48865,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48881,7 +48881,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48897,7 +48897,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48913,7 +48913,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48927,7 +48927,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48943,7 +48943,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48959,7 +48959,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48975,7 +48975,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48991,7 +48991,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49006,7 +49006,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49024,7 +49024,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49042,7 +49042,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49060,7 +49060,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49078,7 +49078,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49093,7 +49093,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49111,7 +49111,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49129,7 +49129,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49147,7 +49147,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49165,7 +49165,7 @@ namespace OpenTK.Graphics.ES30 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES30.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49179,7 +49179,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49195,7 +49195,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49211,7 +49211,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49227,7 +49227,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49243,7 +49243,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49257,7 +49257,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49273,7 +49273,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49289,7 +49289,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49305,7 +49305,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49321,7 +49321,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49335,7 +49335,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49351,7 +49351,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49367,7 +49367,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49383,7 +49383,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49399,7 +49399,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49413,7 +49413,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49429,7 +49429,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49445,7 +49445,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49461,7 +49461,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49477,7 +49477,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static OpenTK.Graphics.ES30.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES30.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49485,7 +49485,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49493,7 +49493,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49501,7 +49501,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49509,7 +49509,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49517,7 +49517,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49525,7 +49525,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49533,7 +49533,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49541,7 +49541,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49549,7 +49549,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49557,7 +49557,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49565,7 +49565,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49573,13 +49573,13 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49588,7 +49588,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49597,7 +49597,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49605,7 +49605,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49613,7 +49613,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES30.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49622,7 +49622,7 @@ namespace OpenTK.Graphics.ES30 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49633,7 +49633,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49644,7 +49644,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49655,7 +49655,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49666,7 +49666,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49675,7 +49675,7 @@ namespace OpenTK.Graphics.ES30 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49686,7 +49686,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49697,7 +49697,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49708,7 +49708,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49719,7 +49719,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES30.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49732,7 +49732,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49747,7 +49747,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49762,7 +49762,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49777,7 +49777,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49792,7 +49792,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49805,7 +49805,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49820,7 +49820,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49835,7 +49835,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49850,7 +49850,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49865,7 +49865,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49878,7 +49878,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49893,7 +49893,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49908,7 +49908,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49923,7 +49923,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49938,7 +49938,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49951,7 +49951,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49966,7 +49966,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49981,7 +49981,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49996,7 +49996,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50011,7 +50011,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50024,7 +50024,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50039,7 +50039,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50054,7 +50054,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50069,7 +50069,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50084,7 +50084,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50097,7 +50097,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50112,7 +50112,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50127,7 +50127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50142,7 +50142,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50157,7 +50157,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50167,7 +50167,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50179,7 +50179,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50191,7 +50191,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50203,7 +50203,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50215,7 +50215,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50225,7 +50225,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50237,7 +50237,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50249,7 +50249,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50261,7 +50261,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50273,7 +50273,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES30.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50282,7 +50282,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50291,7 +50291,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50300,7 +50300,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.ES30.All texCoordSet, OpenTK.Graphics.ES30.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50313,7 +50313,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50326,7 +50326,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50339,7 +50339,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50352,7 +50352,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -50365,7 +50365,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -50377,7 +50377,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES30.MaterialFace face, OpenTK.Graphics.ES30.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES30.MaterialFace face, OpenTK.Graphics.ES30.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50387,7 +50387,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50397,7 +50397,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50407,7 +50407,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50417,7 +50417,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50427,7 +50427,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50437,7 +50437,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES30.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50453,7 +50453,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50469,7 +50469,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50488,7 +50488,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50507,7 +50507,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50526,7 +50526,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50545,7 +50545,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50564,7 +50564,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50583,7 +50583,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50599,7 +50599,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50618,7 +50618,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50637,7 +50637,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50656,7 +50656,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50675,7 +50675,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50694,7 +50694,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50713,7 +50713,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50732,7 +50732,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50751,7 +50751,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50770,7 +50770,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50789,7 +50789,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50808,7 +50808,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50827,7 +50827,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50846,7 +50846,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50865,7 +50865,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50884,7 +50884,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50906,7 +50906,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50928,7 +50928,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50947,7 +50947,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50966,7 +50966,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -50985,7 +50985,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51004,7 +51004,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51023,7 +51023,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51042,7 +51042,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51064,7 +51064,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51083,7 +51083,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51102,7 +51102,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51121,7 +51121,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51146,7 +51146,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51171,7 +51171,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51190,7 +51190,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51209,7 +51209,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51228,7 +51228,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51247,7 +51247,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51266,7 +51266,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51285,7 +51285,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51310,7 +51310,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51329,7 +51329,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51348,7 +51348,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -51367,7 +51367,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51375,7 +51375,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51383,7 +51383,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51392,7 +51392,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51401,7 +51401,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51410,7 +51410,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51419,7 +51419,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51428,7 +51428,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -51437,7 +51437,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_read_buffer] /// Select a color buffer source for pixels @@ -51446,7 +51446,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a color buffer. Accepted values are Back, None, and ColorAttachmenti. /// [AutoGenerated(Category = "NV_read_buffer", Version = "", EntryPoint = "glReadBufferNV")] - public static void ReadBuffer(OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -51468,7 +51468,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -51489,11 +51489,11 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES30.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES30.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51509,7 +51509,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51525,7 +51525,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51541,7 +51541,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51557,7 +51557,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51573,7 +51573,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -51589,7 +51589,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51611,7 +51611,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51633,7 +51633,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51646,7 +51646,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51659,7 +51659,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51672,7 +51672,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51685,7 +51685,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51698,7 +51698,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -51711,45 +51711,45 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.ES30.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.ES30.All condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.ES30.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51762,7 +51762,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51775,7 +51775,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51788,7 +51788,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51801,7 +51801,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51814,7 +51814,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51827,7 +51827,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51842,7 +51842,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51857,7 +51857,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51872,7 +51872,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51887,7 +51887,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51902,7 +51902,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51917,7 +51917,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51932,7 +51932,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51947,7 +51947,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51962,7 +51962,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51977,7 +51977,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51992,7 +51992,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52007,7 +52007,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52022,7 +52022,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52037,7 +52037,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52052,7 +52052,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52067,7 +52067,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52082,7 +52082,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52097,7 +52097,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52112,7 +52112,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52127,7 +52127,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52142,7 +52142,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52157,7 +52157,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52172,7 +52172,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52187,7 +52187,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52195,7 +52195,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52203,7 +52203,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52216,7 +52216,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52229,7 +52229,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52242,7 +52242,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52255,7 +52255,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52268,7 +52268,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52281,7 +52281,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52296,7 +52296,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52311,7 +52311,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52326,7 +52326,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52341,7 +52341,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52356,7 +52356,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52371,7 +52371,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52386,7 +52386,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52401,7 +52401,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52416,7 +52416,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52431,7 +52431,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52446,7 +52446,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52461,7 +52461,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52476,7 +52476,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52491,7 +52491,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52506,7 +52506,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52521,7 +52521,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52536,7 +52536,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52551,7 +52551,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52566,7 +52566,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52581,7 +52581,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52596,7 +52596,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52611,7 +52611,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52626,7 +52626,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52641,7 +52641,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52649,7 +52649,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52657,7 +52657,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52671,7 +52671,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52685,7 +52685,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52699,7 +52699,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52713,7 +52713,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52727,7 +52727,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52741,7 +52741,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52757,7 +52757,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52773,7 +52773,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52789,7 +52789,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52805,7 +52805,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52821,7 +52821,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52837,7 +52837,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52853,7 +52853,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52869,7 +52869,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52885,7 +52885,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52901,7 +52901,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52917,7 +52917,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52933,7 +52933,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52949,7 +52949,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52965,7 +52965,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52981,7 +52981,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52997,7 +52997,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53013,7 +53013,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53029,7 +53029,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53045,7 +53045,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53061,7 +53061,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53077,7 +53077,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53093,7 +53093,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53109,7 +53109,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53125,7 +53125,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53134,7 +53134,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES30.All fillMode, Int32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53143,7 +53143,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES30.All fillMode, UInt32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53157,7 +53157,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53171,7 +53171,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53185,7 +53185,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53199,7 +53199,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53213,7 +53213,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53227,7 +53227,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53243,7 +53243,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53259,7 +53259,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53275,7 +53275,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53291,7 +53291,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53307,7 +53307,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53323,7 +53323,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53339,7 +53339,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53355,7 +53355,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53371,7 +53371,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53387,7 +53387,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53403,7 +53403,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53419,7 +53419,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53435,7 +53435,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53451,7 +53451,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53467,7 +53467,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53483,7 +53483,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53499,7 +53499,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53515,7 +53515,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53531,7 +53531,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53547,7 +53547,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53563,7 +53563,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53579,7 +53579,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53595,7 +53595,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53611,7 +53611,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES30.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode, OpenTK.Graphics.ES30.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53620,7 +53620,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53629,33 +53629,33 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES30.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53664,7 +53664,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53673,7 +53673,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53682,7 +53682,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53691,7 +53691,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53700,7 +53700,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -53709,7 +53709,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES30.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53721,7 +53721,7 @@ namespace OpenTK.Graphics.ES30 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53737,7 +53737,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53753,7 +53753,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53769,7 +53769,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53782,7 +53782,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53798,7 +53798,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53814,7 +53814,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53830,7 +53830,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53845,7 +53845,7 @@ namespace OpenTK.Graphics.ES30 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53861,7 +53861,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53877,7 +53877,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53893,7 +53893,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53909,7 +53909,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53925,7 +53925,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53941,7 +53941,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53957,7 +53957,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53975,7 +53975,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -53991,7 +53991,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54007,7 +54007,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54023,7 +54023,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54042,7 +54042,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54058,7 +54058,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54074,7 +54074,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54090,7 +54090,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54111,7 +54111,7 @@ namespace OpenTK.Graphics.ES30 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54127,7 +54127,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54143,7 +54143,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54159,7 +54159,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54181,7 +54181,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54197,7 +54197,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54213,7 +54213,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -54229,21 +54229,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54251,7 +54251,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54259,7 +54259,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54267,7 +54267,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54275,7 +54275,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54283,7 +54283,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -54291,7 +54291,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54300,7 +54300,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54309,7 +54309,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54318,7 +54318,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54327,7 +54327,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54336,7 +54336,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54345,7 +54345,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54354,7 +54354,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54363,7 +54363,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54372,7 +54372,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54381,7 +54381,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54390,7 +54390,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54399,7 +54399,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54408,7 +54408,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54417,7 +54417,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54426,7 +54426,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54435,7 +54435,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54444,7 +54444,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -54453,7 +54453,7 @@ namespace OpenTK.Graphics.ES30 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -54466,7 +54466,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -54479,7 +54479,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54495,7 +54495,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54511,7 +54511,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54527,7 +54527,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54543,7 +54543,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54559,7 +54559,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -54575,7 +54575,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54597,7 +54597,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54619,7 +54619,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54632,7 +54632,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54645,7 +54645,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54658,7 +54658,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54671,7 +54671,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54684,7 +54684,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -54697,7 +54697,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -54707,7 +54707,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES30.All swizzlex, OpenTK.Graphics.ES30.All swizzley, OpenTK.Graphics.ES30.All swizzlez, OpenTK.Graphics.ES30.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES30.All swizzlex, OpenTK.Graphics.ES30.All swizzley, OpenTK.Graphics.ES30.All swizzlez, OpenTK.Graphics.ES30.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -54717,19 +54717,19 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES30.All swizzlex, OpenTK.Graphics.ES30.All swizzley, OpenTK.Graphics.ES30.All swizzlez, OpenTK.Graphics.ES30.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES30.All swizzlex, OpenTK.Graphics.ES30.All swizzley, OpenTK.Graphics.ES30.All swizzlez, OpenTK.Graphics.ES30.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54738,7 +54738,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54747,7 +54747,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54756,7 +54756,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54765,7 +54765,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54774,7 +54774,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -54783,7 +54783,7 @@ namespace OpenTK.Graphics.ES30 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -54797,7 +54797,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(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -54807,7 +54807,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -54821,7 +54821,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -54834,7 +54834,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -54848,7 +54848,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -54861,7 +54861,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -54878,7 +54878,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -54894,7 +54894,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -54911,7 +54911,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.All modeRGB, OpenTK.Graphics.ES30.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -54927,7 +54927,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES30.BlendEquationMode modeRGB, OpenTK.Graphics.ES30.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -54941,7 +54941,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -54955,7 +54955,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES30.All src, OpenTK.Graphics.ES30.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -54977,7 +54977,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -54999,7 +54999,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES30.All srcRGB, OpenTK.Graphics.ES30.All dstRGB, OpenTK.Graphics.ES30.All srcAlpha, OpenTK.Graphics.ES30.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -55019,7 +55019,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -55039,7 +55039,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55073,7 +55073,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55110,7 +55110,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55147,7 +55147,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55184,7 +55184,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55220,7 +55220,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55253,7 +55253,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55289,7 +55289,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55325,7 +55325,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55361,7 +55361,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -55396,7 +55396,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55436,7 +55436,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55479,7 +55479,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55522,7 +55522,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55565,7 +55565,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55607,7 +55607,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55646,7 +55646,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55688,7 +55688,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55730,7 +55730,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55772,7 +55772,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -55813,7 +55813,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -55865,7 +55865,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -55917,7 +55917,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES30.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES30.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -55951,7 +55951,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -55984,7 +55984,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES30.TextureTarget3d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -55994,7 +55994,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56004,7 +56004,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56017,7 +56017,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56030,7 +56030,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56043,7 +56043,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56056,7 +56056,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56069,7 +56069,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -56082,7 +56082,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56098,7 +56098,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56114,7 +56114,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56130,7 +56130,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56146,7 +56146,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56162,7 +56162,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -56178,7 +56178,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -56194,7 +56194,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -56210,21 +56210,21 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56246,7 +56246,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56271,7 +56271,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56296,7 +56296,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56321,7 +56321,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56345,7 +56345,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56366,7 +56366,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56390,7 +56390,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56414,7 +56414,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56438,7 +56438,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56461,7 +56461,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56486,7 +56486,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56514,7 +56514,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56542,7 +56542,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56570,7 +56570,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56597,7 +56597,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56621,7 +56621,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56648,7 +56648,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56675,7 +56675,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56702,7 +56702,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -56728,7 +56728,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56757,7 +56757,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56788,7 +56788,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56819,7 +56819,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56850,7 +56850,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56881,7 +56881,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56910,7 +56910,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56941,7 +56941,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -56972,7 +56972,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57003,7 +57003,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57034,7 +57034,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57062,7 +57062,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57092,7 +57092,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57122,7 +57122,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57152,7 +57152,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57182,7 +57182,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57210,7 +57210,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57240,7 +57240,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57270,7 +57270,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57300,7 +57300,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -57330,19 +57330,19 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES30.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES30.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")] - public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES30.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES30.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")] - public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES30.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES30.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -57353,7 +57353,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -57364,7 +57364,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -57375,7 +57375,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -57386,7 +57386,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -57406,7 +57406,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -57426,7 +57426,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -57445,7 +57445,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -57464,14 +57464,14 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57484,7 +57484,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57497,7 +57497,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57510,7 +57510,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57523,7 +57523,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57536,7 +57536,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -57549,7 +57549,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57557,7 +57557,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57568,7 +57568,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57579,7 +57579,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57590,7 +57590,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57600,14 +57600,14 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// /// /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57617,7 +57617,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57627,7 +57627,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57637,7 +57637,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -57646,7 +57646,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES30.BufferTarget target, OpenTK.Graphics.ES30.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57654,7 +57654,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57662,7 +57662,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57670,7 +57670,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57678,7 +57678,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57686,7 +57686,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -57694,7 +57694,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES30.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57717,7 +57717,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57742,7 +57742,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57767,7 +57767,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57792,7 +57792,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57817,7 +57817,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57840,7 +57840,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57865,7 +57865,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57890,7 +57890,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57915,7 +57915,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57940,7 +57940,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57963,7 +57963,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -57988,7 +57988,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58013,7 +58013,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58038,7 +58038,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58063,7 +58063,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58086,7 +58086,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58111,7 +58111,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58136,7 +58136,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58161,7 +58161,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58186,7 +58186,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58209,7 +58209,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58234,7 +58234,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58259,7 +58259,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58284,7 +58284,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58309,7 +58309,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58332,7 +58332,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58357,7 +58357,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58382,7 +58382,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58407,7 +58407,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -58432,7 +58432,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES30.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58440,7 +58440,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58448,7 +58448,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58456,7 +58456,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58464,7 +58464,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58472,7 +58472,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58480,7 +58480,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58488,7 +58488,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58496,7 +58496,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58504,7 +58504,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58513,7 +58513,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58522,7 +58522,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58531,7 +58531,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58539,7 +58539,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58547,7 +58547,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58555,7 +58555,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58564,7 +58564,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58573,7 +58573,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58582,7 +58582,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58590,7 +58590,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58598,7 +58598,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58606,7 +58606,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -58619,7 +58619,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -58632,7 +58632,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES30.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -58642,7 +58642,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(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -58652,7 +58652,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -58664,7 +58664,7 @@ namespace OpenTK.Graphics.ES30 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -58673,7 +58673,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "OES_sample_shading", Version = "", EntryPoint = "glMinSampleShadingOES")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_tessellation_shader] /// Specifies the parameters for patch primitives @@ -58685,7 +58685,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] - public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES30.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_primitive_bounding_box] /// @@ -58697,7 +58697,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "OES_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxOES")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58716,7 +58716,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, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58737,7 +58737,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58758,7 +58758,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58779,7 +58779,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58800,7 +58800,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58819,7 +58819,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58840,7 +58840,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58861,7 +58861,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58882,7 +58882,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -58903,7 +58903,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES30.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58911,7 +58911,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58919,7 +58919,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58927,7 +58927,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58935,7 +58935,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58943,7 +58943,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58951,7 +58951,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58959,7 +58959,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58967,7 +58967,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -58975,7 +58975,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -58991,7 +58991,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59007,7 +59007,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59023,7 +59023,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59039,7 +59039,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59055,7 +59055,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -59071,7 +59071,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59093,7 +59093,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59115,7 +59115,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59128,7 +59128,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59141,7 +59141,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59154,7 +59154,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59167,7 +59167,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59180,7 +59180,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -59193,7 +59193,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59210,7 +59210,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59227,7 +59227,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59243,7 +59243,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -59259,7 +59259,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59281,7 +59281,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59303,7 +59303,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59325,7 +59325,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -59347,7 +59347,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59384,7 +59384,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59424,7 +59424,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59464,7 +59464,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59504,7 +59504,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59543,7 +59543,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59579,7 +59579,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59618,7 +59618,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59657,7 +59657,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59696,7 +59696,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -59734,7 +59734,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59743,7 +59743,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59752,7 +59752,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59761,7 +59761,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59769,7 +59769,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59777,7 +59777,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59785,7 +59785,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59794,7 +59794,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59803,7 +59803,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59812,7 +59812,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59820,7 +59820,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59828,7 +59828,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -59836,7 +59836,7 @@ namespace OpenTK.Graphics.ES30 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES30.TextureTarget target, OpenTK.Graphics.ES30.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_storage_multisample_2d_array] /// Specify storage for a two-dimensional multisample array texture @@ -59863,7 +59863,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] - public static void TexStorage3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.ES30.All target, Int32 samples, OpenTK.Graphics.ES30.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -59903,7 +59903,7 @@ namespace OpenTK.Graphics.ES30 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -59946,7 +59946,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -59989,7 +59989,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60032,7 +60032,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60074,7 +60074,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60113,7 +60113,7 @@ namespace OpenTK.Graphics.ES30 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60155,7 +60155,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60197,7 +60197,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60239,7 +60239,7 @@ namespace OpenTK.Graphics.ES30 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -60280,7 +60280,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -60311,7 +60311,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES30.All target, Int32 origtexture, OpenTK.Graphics.ES30.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -60342,18 +60342,18 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES30.All target, UInt32 origtexture, OpenTK.Graphics.ES30.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES30.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES30.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES30.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES30.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60369,7 +60369,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60385,7 +60385,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60401,7 +60401,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60417,7 +60417,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60433,7 +60433,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -60449,7 +60449,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60471,7 +60471,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60493,7 +60493,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60506,7 +60506,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60519,7 +60519,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60532,7 +60532,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60545,7 +60545,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60558,7 +60558,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -60571,7 +60571,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } } @@ -60588,7 +60588,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -60601,7 +60601,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -60613,7 +60613,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -60625,7 +60625,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -60637,7 +60637,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -60649,7 +60649,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -60660,7 +60660,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -60671,7 +60671,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES30.FramebufferTarget target, OpenTK.Graphics.ES30.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -60687,49 +60687,49 @@ namespace OpenTK.Graphics.ES30 /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "QCOM_alpha_test", Version = "", EntryPoint = "glAlphaFuncQCOM")] - public static void AlphaFunc(OpenTK.Graphics.ES30.All func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES30.All func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] - public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60738,7 +60738,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60747,7 +60747,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60756,7 +60756,7 @@ namespace OpenTK.Graphics.ES30 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -60764,7 +60764,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] public static void ExtGetBufferPointer(OpenTK.Graphics.ES30.All target, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60773,7 +60773,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60781,7 +60781,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60790,7 +60790,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60799,7 +60799,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60808,7 +60808,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60816,7 +60816,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60825,7 +60825,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -60834,7 +60834,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60843,7 +60843,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60851,7 +60851,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60860,7 +60860,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60869,7 +60869,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60878,7 +60878,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60886,7 +60886,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60895,7 +60895,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -60904,7 +60904,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60913,7 +60913,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60922,7 +60922,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60931,7 +60931,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60940,7 +60940,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60949,7 +60949,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -60958,7 +60958,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES30.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60967,7 +60967,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60975,7 +60975,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60984,7 +60984,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -60993,7 +60993,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -61002,7 +61002,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -61010,7 +61010,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -61019,7 +61019,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -61028,7 +61028,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61037,7 +61037,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61045,7 +61045,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61054,7 +61054,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61063,7 +61063,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61072,7 +61072,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61080,7 +61080,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61089,7 +61089,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -61098,7 +61098,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61107,7 +61107,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61115,7 +61115,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61124,7 +61124,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61133,7 +61133,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61142,7 +61142,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61150,7 +61150,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61159,7 +61159,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -61168,7 +61168,7 @@ namespace OpenTK.Graphics.ES30 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61178,7 +61178,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61188,7 +61188,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61198,7 +61198,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61208,7 +61208,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61218,7 +61218,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61228,7 +61228,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES30.All face, Int32 level, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61243,7 +61243,7 @@ namespace OpenTK.Graphics.ES30 /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] - 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, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); } + 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, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61261,7 +61261,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61279,7 +61279,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61297,7 +61297,7 @@ namespace OpenTK.Graphics.ES30 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61314,7 +61314,7 @@ namespace OpenTK.Graphics.ES30 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] 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] ref T10 texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61322,7 +61322,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61330,7 +61330,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61338,7 +61338,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61346,7 +61346,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61354,7 +61354,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -61362,30 +61362,30 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")] - public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_shader_framebuffer_fetch_noncoherent] [AutoGenerated(Category = "QCOM_shader_framebuffer_fetch_noncoherent", Version = "", EntryPoint = "glFramebufferFetchBarrierQCOM")] - public static void FramebufferFetchBarrier() { throw new NotImplementedException(); } + public static void FramebufferFetchBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61395,7 +61395,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61405,7 +61405,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61415,7 +61415,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61425,7 +61425,7 @@ namespace OpenTK.Graphics.ES30 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61438,7 +61438,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -61451,7 +61451,7 @@ namespace OpenTK.Graphics.ES30 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61459,7 +61459,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61467,7 +61467,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61475,7 +61475,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61483,7 +61483,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61491,7 +61491,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61499,7 +61499,7 @@ namespace OpenTK.Graphics.ES30 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61508,7 +61508,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61517,7 +61517,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61526,7 +61526,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61535,7 +61535,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61544,7 +61544,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -61553,7 +61553,7 @@ namespace OpenTK.Graphics.ES30 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -61563,7 +61563,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -61573,7 +61573,7 @@ namespace OpenTK.Graphics.ES30 /// [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(); } + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/ES31/ES31.cs b/src/OpenTK/Graphics/ES31/ES31.cs index 217d544e..58ecd11d 100644 --- a/src/OpenTK/Graphics/ES31/ES31.cs +++ b/src/OpenTK/Graphics/ES31/ES31.cs @@ -1677,119 +1677,119 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 DeletePerfMonitor() { throw new NotImplementedException(); } + public static Int32 DeletePerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1799,7 +1799,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1809,7 +1809,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1819,7 +1819,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1829,7 +1829,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1839,7 +1839,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1849,7 +1849,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES31.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1858,7 +1858,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1869,7 +1869,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1880,7 +1880,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1891,7 +1891,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1902,7 +1902,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1911,7 +1911,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1922,7 +1922,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1933,7 +1933,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1944,7 +1944,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1955,7 +1955,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1965,7 +1965,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1975,7 +1975,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1985,7 +1985,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -1995,7 +1995,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2005,7 +2005,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2015,7 +2015,7 @@ namespace OpenTK.Graphics.ES31 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2025,7 +2025,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2035,7 +2035,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2045,7 +2045,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2055,7 +2055,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2063,7 +2063,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2071,7 +2071,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2079,7 +2079,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2087,7 +2087,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2095,7 +2095,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -2103,7 +2103,7 @@ namespace OpenTK.Graphics.ES31 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2112,7 +2112,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2121,7 +2121,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2130,7 +2130,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2139,7 +2139,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2149,7 +2149,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2159,7 +2159,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2169,7 +2169,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2179,7 +2179,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2189,7 +2189,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2199,7 +2199,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } } @@ -2240,7 +2240,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -2277,7 +2277,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")] [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2296,7 +2296,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a range of elements @@ -2314,7 +2314,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2336,7 +2336,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2361,7 +2361,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2386,7 +2386,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2411,7 +2411,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2435,7 +2435,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2456,7 +2456,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2480,7 +2480,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2504,7 +2504,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2528,7 +2528,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Draw multiple instances of a set of elements @@ -2551,7 +2551,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2561,7 +2561,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2571,7 +2571,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2581,7 +2581,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2591,7 +2591,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2601,7 +2601,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_translated_shader_source] /// @@ -2611,7 +2611,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")] [CLSCompliant(false)] - public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new NotImplementedException(); } + public static unsafe void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2632,7 +2632,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2645,7 +2645,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ANGLE_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -2658,7 +2658,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } } @@ -2678,7 +2678,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Block and wait for a sync object to become signaled @@ -2694,7 +2694,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2703,7 +2703,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_copy_texture_levels] /// @@ -2712,7 +2712,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Delete a sync object @@ -2721,7 +2721,7 @@ namespace OpenTK.Graphics.ES31 /// The sync object to be deleted. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2734,7 +2734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Create a new sync object and insert it into the GL command stream @@ -2747,34 +2747,34 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2796,7 +2796,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2818,7 +2818,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Query the properties of a sync object @@ -2840,7 +2840,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Determine if a name corresponds to a sync object @@ -2849,7 +2849,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -2870,11 +2870,11 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_framebuffer_multisample] [AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glResolveMultisampleFramebufferAPPLE")] - public static void ResolveMultisampleFramebuffer() { throw new NotImplementedException(); } + public static void ResolveMultisampleFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2890,7 +2890,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_sync] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -2906,7 +2906,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } } @@ -2914,7 +2914,7 @@ namespace OpenTK.Graphics.ES31 { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -2929,7 +2929,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glActiveShaderProgram")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Set the active program object for a program pipeline object @@ -2942,7 +2942,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glActiveShaderProgram")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Select active texture unit @@ -2952,7 +2952,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES31.All texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES31.All texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Select active texture unit @@ -2961,7 +2961,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies which texture unit to make active. The number of texture units is implementation-dependent, but must be at least 32. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.ES31.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.ES31.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attaches a shader object to a program object @@ -2974,7 +2974,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attaches a shader object to a program object @@ -2987,7 +2987,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3000,7 +3000,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delimit the boundaries of a query object @@ -3013,7 +3013,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Start transform feedback operation @@ -3022,7 +3022,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.ES31.All primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.ES31.All primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3038,7 +3038,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Associates a generic vertex attribute index with a named attribute variable @@ -3054,7 +3054,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3068,7 +3068,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES31.All target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3082,7 +3082,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES31.All target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3095,7 +3095,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named buffer object @@ -3108,7 +3108,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")] [CLSCompliant(false)] - public static void BindBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.ES31.BufferTargetArb target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3124,7 +3124,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a buffer object to an indexed buffer target @@ -3140,7 +3140,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3162,7 +3162,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3184,7 +3184,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES31.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3206,7 +3206,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a range within a buffer object to an indexed buffer target @@ -3228,7 +3228,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.ES31.All target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3242,7 +3242,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES31.All target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3256,7 +3256,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES31.All target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3269,7 +3269,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a framebuffer to a framebuffer target @@ -3282,7 +3282,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.ES31.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a level of a texture to an image unit @@ -3310,7 +3310,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] - public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new NotImplementedException(); } + public static void BindImageTexture(Int32 unit, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a level of a texture to an image unit @@ -3338,7 +3338,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindImageTexture")] [CLSCompliant(false)] - public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new NotImplementedException(); } + public static void BindImageTexture(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All access, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a program pipeline to the current context @@ -3348,7 +3348,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindProgramPipeline")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a program pipeline to the current context @@ -3358,7 +3358,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindProgramPipeline")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3372,7 +3372,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES31.All target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3386,7 +3386,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES31.All target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3399,7 +3399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES31.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a renderbuffer to a renderbuffer target @@ -3412,7 +3412,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.ES31.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.ES31.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a named sampler to a texturing target @@ -3425,7 +3425,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(Int32 unit, Int32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(Int32 unit, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a named sampler to a texturing target @@ -3438,7 +3438,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindSampler")] [CLSCompliant(false)] - public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new NotImplementedException(); } + public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3452,7 +3452,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES31.All target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3466,7 +3466,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES31.All target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3479,7 +3479,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES31.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES31.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Bind a named texture to a texturing target @@ -3492,7 +3492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.ES31.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.ES31.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3505,7 +3505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, Int32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a transform feedback object @@ -3518,7 +3518,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object @@ -3528,7 +3528,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Bind a vertex array object @@ -3538,7 +3538,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindVertexArray")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a buffer to a vertex buffer bind point @@ -3557,7 +3557,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindVertexBuffer")] [CLSCompliant(false)] - public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind a buffer to a vertex buffer bind point @@ -3576,7 +3576,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glBindVertexBuffer")] [CLSCompliant(false)] - public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the blend color @@ -3594,7 +3594,7 @@ namespace OpenTK.Graphics.ES31 /// specify the components of BlendColor /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3604,7 +3604,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3613,7 +3613,7 @@ namespace OpenTK.Graphics.ES31 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3626,7 +3626,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the RGB blend equation and the alpha blend equation separately @@ -3638,7 +3638,7 @@ namespace OpenTK.Graphics.ES31 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.ES31.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES31.BlendEquationModeExt modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.ES31.BlendEquationModeExt modeRGB, OpenTK.Graphics.ES31.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3651,7 +3651,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES31.All sfactor, OpenTK.Graphics.ES31.All dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES31.All sfactor, OpenTK.Graphics.ES31.All dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic @@ -3663,7 +3663,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.ES31.BlendingFactorSrc sfactor, OpenTK.Graphics.ES31.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.ES31.BlendingFactorSrc sfactor, OpenTK.Graphics.ES31.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3681,7 +3681,7 @@ namespace OpenTK.Graphics.ES31 /// Specified how the alpha destination blending factor is computed. The initial value is Zero. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.ES31.All sfactorRGB, OpenTK.Graphics.ES31.All dfactorRGB, OpenTK.Graphics.ES31.All sfactorAlpha, OpenTK.Graphics.ES31.All dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.ES31.All sfactorRGB, OpenTK.Graphics.ES31.All dfactorRGB, OpenTK.Graphics.ES31.All sfactorAlpha, OpenTK.Graphics.ES31.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3718,7 +3718,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.All mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.All mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -3754,7 +3754,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.ClearBufferMask mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES31.ClearBufferMask mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3773,7 +3773,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3795,7 +3795,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3817,7 +3817,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3839,7 +3839,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3860,7 +3860,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3879,7 +3879,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.All usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3901,7 +3901,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3923,7 +3923,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3945,7 +3945,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3966,7 +3966,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.All usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -3984,7 +3984,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4005,7 +4005,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4026,7 +4026,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4047,7 +4047,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4067,7 +4067,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4085,7 +4085,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.ES31.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4106,7 +4106,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4127,7 +4127,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4148,7 +4148,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates and initializes a buffer object's data store @@ -4168,7 +4168,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.ES31.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4187,7 +4187,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4209,7 +4209,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4231,7 +4231,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4253,7 +4253,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4274,7 +4274,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4293,7 +4293,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4315,7 +4315,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4337,7 +4337,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4359,7 +4359,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4380,7 +4380,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4398,7 +4398,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4419,7 +4419,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4440,7 +4440,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4461,7 +4461,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4481,7 +4481,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4499,7 +4499,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4520,7 +4520,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4541,7 +4541,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4562,7 +4562,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Updates a subset of a buffer object's data store @@ -4582,7 +4582,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4592,7 +4592,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Check the completeness status of a framebuffer @@ -4601,7 +4601,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All CheckFramebufferStatus(OpenTK.Graphics.ES31.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4611,7 +4611,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES31.All mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES31.All mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Clear buffers to preset values @@ -4620,7 +4620,7 @@ namespace OpenTK.Graphics.ES31 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.ES31.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.ES31.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4638,7 +4638,7 @@ namespace OpenTK.Graphics.ES31 /// The value to clear a stencil render buffer to. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4654,7 +4654,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4670,7 +4670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4686,7 +4686,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4702,7 +4702,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4718,7 +4718,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4734,7 +4734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4750,7 +4750,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4766,7 +4766,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Clear individual buffers of the currently bound draw framebuffer @@ -4782,7 +4782,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.ES31.All buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify clear values for the color buffers @@ -4800,7 +4800,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the depth buffer @@ -4809,7 +4809,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the clear value for the stencil buffer @@ -4818,7 +4818,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -4834,7 +4834,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Block and wait for a sync object to become signaled @@ -4850,7 +4850,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable and disable writing of frame buffer color components @@ -4868,7 +4868,7 @@ namespace OpenTK.Graphics.ES31 /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all True, indicating that the color components are written. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compiles a shader object @@ -4878,7 +4878,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(Int32 shader) { throw new NotImplementedException(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Compiles a shader object @@ -4888,7 +4888,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4919,7 +4919,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4953,7 +4953,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -4987,7 +4987,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5021,7 +5021,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5054,7 +5054,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5084,7 +5084,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5117,7 +5117,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5150,7 +5150,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5183,7 +5183,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image in a compressed format @@ -5215,7 +5215,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")] public static void CompressedTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5249,7 +5249,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5286,7 +5286,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5323,7 +5323,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5360,7 +5360,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5396,7 +5396,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5429,7 +5429,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5465,7 +5465,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5501,7 +5501,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5537,7 +5537,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image in a compressed format @@ -5572,7 +5572,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexImage3D")] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5606,7 +5606,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5643,7 +5643,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5680,7 +5680,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5717,7 +5717,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5753,7 +5753,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5786,7 +5786,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] - public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5822,7 +5822,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5858,7 +5858,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5894,7 +5894,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage in a compressed format @@ -5929,7 +5929,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")] public static void CompressedTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -5969,7 +5969,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6012,7 +6012,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6055,7 +6055,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6098,7 +6098,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6140,7 +6140,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6179,7 +6179,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6221,7 +6221,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6263,7 +6263,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6305,7 +6305,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage in a compressed format @@ -6346,7 +6346,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCompressedTexSubImage3D")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6367,7 +6367,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -6388,7 +6388,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -6419,7 +6419,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy pixels into a 2D texture image @@ -6449,7 +6449,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the width of the border. Must be 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6480,7 +6480,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Copy a two-dimensional texture subimage @@ -6510,7 +6510,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a three-dimensional texture subimage @@ -6544,7 +6544,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Copy a three-dimensional texture subimage @@ -6577,13 +6577,13 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a program object /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Creates a shader object @@ -6592,7 +6592,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the type of shader to be created. VertexShader, FragmentShader, or ComputeShader, /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.ES31.All type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.ES31.All type) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Create a stand-alone program from an array of null-terminated source code strings @@ -6607,7 +6607,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glCreateShaderProgramv")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -6617,7 +6617,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify whether front- or back-facing polygons can be culled @@ -6626,7 +6626,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.ES31.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.ES31.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6638,7 +6638,7 @@ namespace OpenTK.Graphics.ES31 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6653,7 +6653,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6668,7 +6668,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6683,7 +6683,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Specify a callback to receive debugging messages from the GL @@ -6697,7 +6697,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6722,7 +6722,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6747,7 +6747,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6772,7 +6772,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6797,7 +6797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6822,7 +6822,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Control the reporting of debug messages in a debug context @@ -6847,7 +6847,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6872,7 +6872,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// /// Inject an application-supplied message into the debug message queue @@ -6897,7 +6897,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6907,7 +6907,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6917,7 +6917,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6930,7 +6930,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6943,7 +6943,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6956,7 +6956,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6969,7 +6969,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6982,7 +6982,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named buffer objects @@ -6995,7 +6995,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7005,7 +7005,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7015,7 +7015,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7028,7 +7028,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7041,7 +7041,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7054,7 +7054,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7067,7 +7067,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7080,7 +7080,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete framebuffer objects @@ -7093,7 +7093,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a program object @@ -7103,7 +7103,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a program object @@ -7113,7 +7113,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7123,7 +7123,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7133,7 +7133,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7146,7 +7146,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7159,7 +7159,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7172,7 +7172,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7185,7 +7185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7198,7 +7198,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Delete program pipeline objects @@ -7211,7 +7211,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7221,7 +7221,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7231,7 +7231,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7244,7 +7244,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7257,7 +7257,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7270,7 +7270,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7283,7 +7283,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7296,7 +7296,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named query objects @@ -7309,7 +7309,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7319,7 +7319,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7329,7 +7329,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7342,7 +7342,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7355,7 +7355,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7368,7 +7368,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7381,7 +7381,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7394,7 +7394,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete renderbuffer objects @@ -7407,7 +7407,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7417,7 +7417,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7427,7 +7427,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7440,7 +7440,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7453,7 +7453,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7466,7 +7466,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7479,7 +7479,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7492,7 +7492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete named sampler objects @@ -7505,7 +7505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a shader object @@ -7515,7 +7515,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Deletes a shader object @@ -7525,7 +7525,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete a sync object @@ -7534,7 +7534,7 @@ namespace OpenTK.Graphics.ES31 /// The sync object to be deleted. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteSync")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7544,7 +7544,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7554,7 +7554,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7567,7 +7567,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7580,7 +7580,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7593,7 +7593,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7606,7 +7606,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7619,7 +7619,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Delete named textures @@ -7632,7 +7632,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7642,7 +7642,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7652,7 +7652,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7665,7 +7665,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7678,7 +7678,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7691,7 +7691,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7704,7 +7704,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7717,7 +7717,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete transform feedback objects @@ -7730,7 +7730,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7740,7 +7740,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7750,7 +7750,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7763,7 +7763,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7776,7 +7776,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7789,7 +7789,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7802,7 +7802,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7815,7 +7815,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Delete vertex array objects @@ -7828,7 +7828,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -7838,7 +7838,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES31.All func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES31.All func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value used for depth buffer comparisons @@ -7847,7 +7847,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.ES31.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.ES31.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable writing into the depth buffer @@ -7856,7 +7856,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -7868,7 +7868,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detaches a shader object from a program object to which it is attached @@ -7881,7 +7881,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Detaches a shader object from a program object to which it is attached @@ -7894,30 +7894,30 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES31.All cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.ES31.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Launch one or more compute work groups @@ -7933,7 +7933,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDispatchCompute")] [CLSCompliant(false)] - public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new NotImplementedException(); } + public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Launch one or more compute work groups @@ -7949,7 +7949,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDispatchCompute")] [CLSCompliant(false)] - public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new NotImplementedException(); } + public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Launch one or more compute work groups using parameters stored in a buffer @@ -7958,7 +7958,7 @@ namespace OpenTK.Graphics.ES31 /// The offset into the buffer object currently bound to the DispatchIndirectBuffer buffer target at which the dispatch parameters are stored. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDispatchComputeIndirect")] - public static void DispatchComputeIndirect(IntPtr indirect) { throw new NotImplementedException(); } + public static void DispatchComputeIndirect(IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -7974,7 +7974,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -7989,7 +7989,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8002,7 +8002,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8018,7 +8018,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8034,7 +8034,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8050,7 +8050,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8065,7 +8065,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8077,7 +8077,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8092,7 +8092,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8107,7 +8107,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8122,7 +8122,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render primitives from array data, taking parameters from memory @@ -8136,7 +8136,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a range of elements @@ -8155,7 +8155,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a range of elements @@ -8173,7 +8173,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8186,7 +8186,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8199,7 +8199,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specifies a list of color buffers to be drawn into @@ -8212,7 +8212,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8231,7 +8231,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8253,7 +8253,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8275,7 +8275,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8297,7 +8297,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8318,7 +8318,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8336,7 +8336,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8357,7 +8357,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8378,7 +8378,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8399,7 +8399,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Render primitives from array data @@ -8419,7 +8419,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8435,7 +8435,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8454,7 +8454,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8473,7 +8473,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8492,7 +8492,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8510,7 +8510,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8525,7 +8525,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8543,7 +8543,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8561,7 +8561,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8579,7 +8579,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Render indexed primitives from array data, taking parameters from memory @@ -8596,7 +8596,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8618,7 +8618,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8643,7 +8643,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8668,7 +8668,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8693,7 +8693,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8717,7 +8717,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8738,7 +8738,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8762,7 +8762,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8786,7 +8786,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8810,7 +8810,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Draw multiple instances of a set of elements @@ -8833,7 +8833,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8859,7 +8859,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8887,7 +8887,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8915,7 +8915,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8943,7 +8943,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8971,7 +8971,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -8997,7 +8997,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9025,7 +9025,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9053,7 +9053,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9081,7 +9081,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9109,7 +9109,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9134,7 +9134,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9161,7 +9161,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9188,7 +9188,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9215,7 +9215,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9242,7 +9242,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9267,7 +9267,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")] [CLSCompliant(false)] - public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9294,7 +9294,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9321,7 +9321,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9348,7 +9348,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Render primitives from array data @@ -9375,7 +9375,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -9385,7 +9385,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES31.All cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable server-side GL capabilities @@ -9394,7 +9394,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.ES31.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -9404,7 +9404,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Enable or disable a generic vertex attribute array @@ -9414,16 +9414,16 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Create a new sync object and insert it into the GL command stream @@ -9436,7 +9436,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Create a new sync object and insert it into the GL command stream @@ -9449,19 +9449,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFenceSync")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.ES31.All condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9477,7 +9477,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9493,7 +9493,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9508,7 +9508,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -9523,7 +9523,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Set a named parameter of a framebuffer @@ -9538,7 +9538,7 @@ namespace OpenTK.Graphics.ES31 /// The new value for the parameter named pname. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glFramebufferParameteri")] - public static void FramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void FramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9558,7 +9558,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9578,7 +9578,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9597,7 +9597,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -9616,7 +9616,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9639,7 +9639,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9662,7 +9662,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9684,7 +9684,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -9706,7 +9706,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")] [CLSCompliant(false)] - public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture2D(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9729,7 +9729,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9752,7 +9752,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9774,7 +9774,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -9796,7 +9796,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")] [CLSCompliant(false)] - public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -9806,7 +9806,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define front- and back-facing polygons @@ -9815,14 +9815,14 @@ namespace OpenTK.Graphics.ES31 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.ES31.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.ES31.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9835,7 +9835,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9848,7 +9848,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9861,7 +9861,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9874,7 +9874,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9887,7 +9887,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate buffer object names @@ -9900,7 +9900,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate mipmaps for a specified texture target @@ -9909,14 +9909,14 @@ namespace OpenTK.Graphics.ES31 /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture2D, Texture3D, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9929,7 +9929,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9942,7 +9942,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9955,7 +9955,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9968,7 +9968,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9981,7 +9981,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate framebuffer object names @@ -9994,14 +9994,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10014,7 +10014,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10027,7 +10027,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10040,7 +10040,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10053,7 +10053,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10066,7 +10066,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Reserve program pipeline object names @@ -10079,14 +10079,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10099,7 +10099,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10112,7 +10112,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10125,7 +10125,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10138,7 +10138,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10151,7 +10151,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate query object names @@ -10164,14 +10164,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10184,7 +10184,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10197,7 +10197,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10210,7 +10210,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10223,7 +10223,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10236,7 +10236,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate renderbuffer object names @@ -10249,14 +10249,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static Int32 GenSampler() { throw new NotImplementedException(); } + public static Int32 GenSampler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10269,7 +10269,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10282,7 +10282,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10295,7 +10295,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10308,7 +10308,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10321,7 +10321,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate sampler object names @@ -10334,14 +10334,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10354,7 +10354,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10367,7 +10367,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10380,7 +10380,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10393,7 +10393,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10406,7 +10406,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Generate texture names @@ -10419,14 +10419,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10439,7 +10439,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10452,7 +10452,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10465,7 +10465,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10478,7 +10478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10491,7 +10491,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Reserve transform feedback object names @@ -10504,14 +10504,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10524,7 +10524,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10537,7 +10537,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10550,7 +10550,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10563,7 +10563,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10576,7 +10576,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Generate vertex array object names @@ -10589,7 +10589,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10617,7 +10617,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10645,7 +10645,7 @@ namespace OpenTK.Graphics.ES31 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10673,7 +10673,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active attribute variable for the specified program object @@ -10701,7 +10701,7 @@ namespace OpenTK.Graphics.ES31 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10729,7 +10729,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10757,7 +10757,7 @@ namespace OpenTK.Graphics.ES31 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10785,7 +10785,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns information about an active uniform variable for the specified program object @@ -10813,7 +10813,7 @@ namespace OpenTK.Graphics.ES31 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10832,7 +10832,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10851,7 +10851,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10870,7 +10870,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10889,7 +10889,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10908,7 +10908,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query information about an active uniform block @@ -10927,7 +10927,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -10949,7 +10949,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -10971,7 +10971,7 @@ namespace OpenTK.Graphics.ES31 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -10993,7 +10993,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockName")] [CLSCompliant(false)] - public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the name of an active uniform block @@ -11015,7 +11015,7 @@ namespace OpenTK.Graphics.ES31 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11037,7 +11037,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11059,7 +11059,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11081,7 +11081,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11103,7 +11103,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11125,7 +11125,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns information about several active uniform variables for the specified program object @@ -11147,7 +11147,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")] [CLSCompliant(false)] - public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11166,7 +11166,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11185,7 +11185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11204,7 +11204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11223,7 +11223,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11242,7 +11242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the handles of the shader objects attached to a program object @@ -11261,7 +11261,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of an attribute variable @@ -11274,7 +11274,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of an attribute variable @@ -11287,7 +11287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11295,7 +11295,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11303,7 +11303,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11311,7 +11311,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11319,7 +11319,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11327,7 +11327,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -11335,20 +11335,20 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetBooleani_v")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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.ES31.All pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static bool GetBoolean(OpenTK.Graphics.ES31.GetPName pname) { throw new NotImplementedException(); } + public static bool GetBoolean(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11356,7 +11356,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11364,7 +11364,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11372,28 +11372,28 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11410,7 +11410,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11427,7 +11427,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11444,7 +11444,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11460,7 +11460,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11476,7 +11476,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a buffer object @@ -11492,7 +11492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11509,7 +11509,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11526,7 +11526,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11543,7 +11543,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11559,7 +11559,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11575,7 +11575,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return parameters of a buffer object @@ -11591,7 +11591,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11607,7 +11607,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11626,7 +11626,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11645,7 +11645,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11664,7 +11664,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11682,7 +11682,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11697,7 +11697,7 @@ namespace OpenTK.Graphics.ES31 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11715,7 +11715,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11733,7 +11733,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11751,7 +11751,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return the pointer to a mapped buffer object's data store @@ -11768,7 +11768,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.ES31.BufferTargetArb target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11799,7 +11799,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11830,7 +11830,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11861,7 +11861,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11892,7 +11892,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11923,7 +11923,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// /// Retrieve messages from the debug message log @@ -11954,26 +11954,26 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return error information /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.ES31.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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.ES31.All pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static Single GetFloat(OpenTK.Graphics.ES31.GetPName pname) { throw new NotImplementedException(); } + public static Single GetFloat(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11981,7 +11981,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11989,7 +11989,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -11997,28 +11997,28 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the bindings of color numbers to user-defined varying out variables @@ -12031,7 +12031,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the bindings of color numbers to user-defined varying out variables @@ -12044,7 +12044,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12064,7 +12064,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12084,7 +12084,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12104,7 +12104,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12123,7 +12123,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12142,7 +12142,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about attachments of a bound framebuffer object @@ -12161,7 +12161,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve a named parameter from a framebuffer @@ -12177,7 +12177,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve a named parameter from a framebuffer @@ -12193,7 +12193,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve a named parameter from a framebuffer @@ -12209,11 +12209,11 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12221,7 +12221,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12229,7 +12229,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12237,7 +12237,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12245,7 +12245,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12253,7 +12253,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12261,34 +12261,34 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static Int64 GetInteger64(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12296,7 +12296,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12304,7 +12304,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12312,7 +12312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12320,7 +12320,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12328,7 +12328,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -12336,20 +12336,20 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or 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.ES31.All pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static Int32 GetInteger(OpenTK.Graphics.ES31.GetPName pname) { throw new NotImplementedException(); } + public static Int32 GetInteger(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12357,7 +12357,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12365,7 +12365,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -12373,28 +12373,28 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -12416,7 +12416,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -12438,7 +12438,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about implementation-dependent support for internal formats @@ -12460,7 +12460,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInternalformativ")] [CLSCompliant(false)] - public static unsafe void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12476,7 +12476,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12492,7 +12492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12508,7 +12508,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.ES31.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12524,7 +12524,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12540,7 +12540,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the location of a sample @@ -12556,7 +12556,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetMultisamplefv")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.ES31.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// /// @@ -12565,7 +12565,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12574,7 +12574,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12583,7 +12583,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12592,7 +12592,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12601,7 +12601,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12610,7 +12610,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12619,7 +12619,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12628,7 +12628,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12637,7 +12637,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12646,7 +12646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12655,7 +12655,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12664,7 +12664,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12673,7 +12673,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12682,7 +12682,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// /// @@ -12691,7 +12691,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12713,7 +12713,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12735,7 +12735,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12757,7 +12757,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12779,7 +12779,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12801,7 +12801,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a named object identified within a namespace @@ -12823,7 +12823,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12843,7 +12843,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12863,7 +12863,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12883,7 +12883,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12905,7 +12905,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12927,7 +12927,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12949,7 +12949,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12971,7 +12971,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -12993,7 +12993,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13015,7 +13015,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13037,7 +13037,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13059,7 +13059,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13081,7 +13081,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13103,7 +13103,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13125,7 +13125,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve the label of a sync object identified by a pointer @@ -13147,7 +13147,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13160,7 +13160,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13176,7 +13176,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13192,7 +13192,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13208,7 +13208,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13223,7 +13223,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13235,7 +13235,7 @@ namespace OpenTK.Graphics.ES31 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13250,7 +13250,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13265,7 +13265,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13280,7 +13280,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Return the address of the specified pointer @@ -13294,7 +13294,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.ES31.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13316,7 +13316,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13340,7 +13340,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13364,7 +13364,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13388,7 +13388,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13412,7 +13412,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13434,7 +13434,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13458,7 +13458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13482,7 +13482,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13506,7 +13506,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13530,7 +13530,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13552,7 +13552,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13576,7 +13576,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13600,7 +13600,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13624,7 +13624,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13648,7 +13648,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13670,7 +13670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetProgramBinary")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13694,7 +13694,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13718,7 +13718,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13742,7 +13742,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a binary representation of a program object's compiled and linked executable source @@ -13766,7 +13766,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -13785,7 +13785,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -13804,7 +13804,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -13823,7 +13823,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a program object @@ -13842,7 +13842,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13861,7 +13861,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13880,7 +13880,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13899,7 +13899,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13918,7 +13918,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13937,7 +13937,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query a property of an interface in a program @@ -13956,7 +13956,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramInterfaceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.ES31.All programInterface, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -13972,7 +13972,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -13988,7 +13988,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14004,7 +14004,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14020,7 +14020,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14036,7 +14036,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a program object @@ -14052,7 +14052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object @@ -14071,7 +14071,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object @@ -14090,7 +14090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object @@ -14109,7 +14109,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve the info log string from a program pipeline object @@ -14128,7 +14128,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14144,7 +14144,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14160,7 +14160,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14176,7 +14176,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14192,7 +14192,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14208,7 +14208,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve properties of a program pipeline object @@ -14224,7 +14224,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramPipelineiv")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the index of a named resource within a program @@ -14240,7 +14240,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the index of a named resource within a program @@ -14256,7 +14256,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceIndex")] [CLSCompliant(false)] - public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14275,7 +14275,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14294,7 +14294,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14313,7 +14313,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14332,7 +14332,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14351,7 +14351,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Retrieve values for multiple properties of a single active resource within a program object @@ -14370,7 +14370,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceiv")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the location of a named resource within a program @@ -14386,7 +14386,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the location of a named resource within a program @@ -14402,7 +14402,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceLocation")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14427,7 +14427,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14452,7 +14452,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14477,7 +14477,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Query the name of an indexed resource within a program @@ -14502,7 +14502,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetProgramResourceName")] [CLSCompliant(false)] - public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -14518,7 +14518,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -14534,7 +14534,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object target @@ -14550,7 +14550,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryiv")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14566,7 +14566,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14582,7 +14582,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14598,7 +14598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14614,7 +14614,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14630,7 +14630,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return parameters of a query object @@ -14646,7 +14646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14663,7 +14663,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14680,7 +14680,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14697,7 +14697,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14713,7 +14713,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14729,7 +14729,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve information about a bound renderbuffer object @@ -14745,7 +14745,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14761,7 +14761,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14777,7 +14777,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14793,7 +14793,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14809,7 +14809,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14825,7 +14825,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14841,7 +14841,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14857,7 +14857,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14873,7 +14873,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14889,7 +14889,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14905,7 +14905,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14921,7 +14921,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return sampler parameter values @@ -14937,7 +14937,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -14956,7 +14956,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -14975,7 +14975,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -14994,7 +14994,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the information log for a shader object @@ -15013,7 +15013,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15029,7 +15029,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15045,7 +15045,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15061,7 +15061,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15077,7 +15077,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15093,7 +15093,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns a parameter from a shader object @@ -15109,7 +15109,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -15128,7 +15128,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -15147,7 +15147,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -15166,7 +15166,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderPrecisionFormat")] [CLSCompliant(false)] - public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.ES31.All shadertype, OpenTK.Graphics.ES31.All precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -15185,7 +15185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -15204,7 +15204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -15223,7 +15223,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the source code string from a shader object @@ -15242,7 +15242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -15252,7 +15252,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES31.All name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES31.All name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a string describing the current GL connection @@ -15261,7 +15261,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant, one of Extensions, Renderer, ShadingLanguageVersion, Vendor, or Version. glGetStringi accepts only the Extensions token. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.ES31.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES31.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -15274,7 +15274,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.ES31.All name, Int32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES31.All name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Return a string describing the current GL connection @@ -15287,7 +15287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")] [CLSCompliant(false)] - public static String GetString(OpenTK.Graphics.ES31.All name, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.ES31.All name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -15309,7 +15309,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -15331,7 +15331,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Query the properties of a sync object @@ -15353,7 +15353,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSynciv")] [CLSCompliant(false)] - public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15373,7 +15373,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15393,7 +15393,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15413,7 +15413,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15432,7 +15432,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15451,7 +15451,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15470,7 +15470,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15490,7 +15490,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15510,7 +15510,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15530,7 +15530,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15549,7 +15549,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15568,7 +15568,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Return texture parameter values for a specific level of detail @@ -15587,7 +15587,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glGetTexLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15604,7 +15604,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15621,7 +15621,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15638,7 +15638,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15654,7 +15654,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15670,7 +15670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15686,7 +15686,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15703,7 +15703,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15720,7 +15720,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15737,7 +15737,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15753,7 +15753,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15769,7 +15769,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return texture parameter values @@ -15785,7 +15785,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetTexParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -15813,7 +15813,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -15841,7 +15841,7 @@ namespace OpenTK.Graphics.ES31 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -15869,7 +15869,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve information about varying variables selected for transform feedback @@ -15897,7 +15897,7 @@ namespace OpenTK.Graphics.ES31 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -15910,7 +15910,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -15923,7 +15923,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformBlockIndex")] [CLSCompliant(false)] - public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -15939,7 +15939,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -15955,7 +15955,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -15971,7 +15971,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -15987,7 +15987,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16003,7 +16003,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16019,7 +16019,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16038,7 +16038,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16057,7 +16057,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16076,7 +16076,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16095,7 +16095,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16114,7 +16114,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Retrieve the index of a named uniform block @@ -16133,7 +16133,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformIndices")] [CLSCompliant(false)] - public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16149,7 +16149,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16165,7 +16165,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16181,7 +16181,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16197,7 +16197,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16213,7 +16213,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the value of a uniform variable @@ -16229,7 +16229,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of a uniform variable @@ -16242,7 +16242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Returns the location of a uniform variable @@ -16255,7 +16255,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -16271,7 +16271,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -16287,7 +16287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Returns the value of a uniform variable @@ -16303,7 +16303,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16319,7 +16319,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16335,7 +16335,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16351,7 +16351,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16367,7 +16367,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16383,7 +16383,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16399,7 +16399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16407,7 +16407,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16415,7 +16415,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16423,7 +16423,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16431,7 +16431,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16439,7 +16439,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -16447,7 +16447,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16463,7 +16463,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16479,7 +16479,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16495,7 +16495,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16511,7 +16511,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16527,7 +16527,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return a generic vertex attribute parameter @@ -16543,7 +16543,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16559,7 +16559,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16577,7 +16577,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16595,7 +16595,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16613,7 +16613,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16631,7 +16631,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16647,7 +16647,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16665,7 +16665,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16683,7 +16683,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16701,7 +16701,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Return the address of the specified generic vertex attribute pointer @@ -16719,7 +16719,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -16732,7 +16732,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify implementation-specific hints @@ -16744,7 +16744,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.ES31.HintTarget target, OpenTK.Graphics.ES31.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.ES31.HintTarget target, OpenTK.Graphics.ES31.HintMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -16760,7 +16760,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -16776,7 +16776,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate the contents of attachments within a framebuffer @@ -16792,7 +16792,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -16820,7 +16820,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -16848,7 +16848,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Invalidate portions of the contents of attachments within a framebuffer @@ -16876,7 +16876,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glInvalidateSubFramebuffer")] [CLSCompliant(false)] - public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -16886,7 +16886,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a buffer object @@ -16896,7 +16896,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -16906,7 +16906,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES31.All cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Test whether a capability is enabled @@ -16915,7 +16915,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -16925,7 +16925,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a framebuffer object @@ -16935,7 +16935,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a program object @@ -16945,7 +16945,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(Int32 program) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a program object @@ -16955,7 +16955,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Determine if a name corresponds to a program pipeline object @@ -16965,7 +16965,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glIsProgramPipeline")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Determine if a name corresponds to a program pipeline object @@ -16975,7 +16975,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glIsProgramPipeline")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a query object @@ -16985,7 +16985,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a query object @@ -16995,7 +16995,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -17005,7 +17005,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a renderbuffer object @@ -17015,7 +17015,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sampler object @@ -17025,7 +17025,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(Int32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sampler object @@ -17035,7 +17035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a shader object @@ -17045,7 +17045,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(Int32 shader) { throw new NotImplementedException(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determines if a name corresponds to a shader object @@ -17055,7 +17055,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a sync object @@ -17064,7 +17064,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsSync")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -17074,7 +17074,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Determine if a name corresponds to a texture @@ -17084,7 +17084,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a transform feedback object @@ -17094,7 +17094,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a transform feedback object @@ -17104,7 +17104,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -17114,7 +17114,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -17124,7 +17124,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glIsVertexArray")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the width of rasterized lines @@ -17133,7 +17133,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Links a program object @@ -17143,7 +17143,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(Int32 program) { throw new NotImplementedException(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Links a program object @@ -17153,7 +17153,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -17172,7 +17172,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -17191,7 +17191,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -17209,7 +17209,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, Int32 length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Map a section of a buffer object's data store @@ -17227,7 +17227,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr offset, IntPtr length, OpenTK.Graphics.ES31.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Defines a barrier ordering memory transactions @@ -17237,7 +17237,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrier")] [CLSCompliant(false)] - public static void MemoryBarrier(Int32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(Int32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Defines a barrier ordering memory transactions @@ -17247,19 +17247,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrier")] [CLSCompliant(false)] - public static void MemoryBarrier(UInt32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(UInt32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrierByRegion")] [CLSCompliant(false)] - public static void MemoryBarrierByRegion(Int32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrierByRegion(Int32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glMemoryBarrierByRegion")] [CLSCompliant(false)] - public static void MemoryBarrierByRegion(UInt32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrierByRegion(UInt32 barriers) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -17278,7 +17278,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a named object identified within a namespace @@ -17297,7 +17297,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17312,7 +17312,7 @@ namespace OpenTK.Graphics.ES31 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17330,7 +17330,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17348,7 +17348,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17366,7 +17366,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Label a a sync object identified by a pointer @@ -17383,13 +17383,13 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Pause transform feedback operations /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glPauseTransformFeedback")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -17402,7 +17402,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set pixel storage modes @@ -17414,7 +17414,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.ES31.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.ES31.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the scale and units used to calculate depth values @@ -17426,13 +17426,13 @@ namespace OpenTK.Graphics.ES31 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17451,7 +17451,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17472,7 +17472,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17493,7 +17493,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17514,7 +17514,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17535,7 +17535,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17554,7 +17554,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramBinary")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17575,7 +17575,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17596,7 +17596,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17617,7 +17617,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Load a program object with a program binary @@ -17638,7 +17638,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -17654,7 +17654,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a parameter for a program object @@ -17670,7 +17670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17686,7 +17686,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1f")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17702,7 +17702,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1f")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17721,7 +17721,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17740,7 +17740,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17759,7 +17759,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17778,7 +17778,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17797,7 +17797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17816,7 +17816,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17832,7 +17832,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1i")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17848,7 +17848,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1i")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17867,7 +17867,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17886,7 +17886,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17905,7 +17905,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17924,7 +17924,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17943,7 +17943,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17962,7 +17962,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17978,7 +17978,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1ui")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -17997,7 +17997,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18016,7 +18016,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18035,7 +18035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform1uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18054,7 +18054,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2f")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18073,7 +18073,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2f")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18092,7 +18092,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18111,7 +18111,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18130,7 +18130,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18149,7 +18149,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18168,7 +18168,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18187,7 +18187,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18206,7 +18206,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2i")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18225,7 +18225,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2i")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18244,7 +18244,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18263,7 +18263,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18282,7 +18282,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18301,7 +18301,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18320,7 +18320,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2ui")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18339,7 +18339,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18358,7 +18358,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18377,7 +18377,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform2uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18399,7 +18399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3f")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18421,7 +18421,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3f")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18440,7 +18440,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18459,7 +18459,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18478,7 +18478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18497,7 +18497,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18516,7 +18516,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18535,7 +18535,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18557,7 +18557,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3i")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18579,7 +18579,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3i")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18598,7 +18598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18617,7 +18617,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18636,7 +18636,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18655,7 +18655,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18674,7 +18674,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18693,7 +18693,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18715,7 +18715,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3ui")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18734,7 +18734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18753,7 +18753,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18772,7 +18772,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform3uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18797,7 +18797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4f")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18822,7 +18822,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4f")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18841,7 +18841,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18860,7 +18860,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18879,7 +18879,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18898,7 +18898,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18917,7 +18917,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18936,7 +18936,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18961,7 +18961,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4i")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -18986,7 +18986,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4i")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19005,7 +19005,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19024,7 +19024,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19043,7 +19043,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19062,7 +19062,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19081,7 +19081,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19100,7 +19100,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4iv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19125,7 +19125,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4ui")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19144,7 +19144,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19163,7 +19163,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the value of a uniform variable for a specified program object @@ -19182,7 +19182,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniform4uiv")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19192,7 +19192,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19202,7 +19202,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19212,7 +19212,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19222,7 +19222,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19232,7 +19232,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19242,7 +19242,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19252,7 +19252,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19262,7 +19262,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19272,7 +19272,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19282,7 +19282,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19292,7 +19292,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19302,7 +19302,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19312,7 +19312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19322,7 +19322,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19332,7 +19332,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19342,7 +19342,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19352,7 +19352,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19362,7 +19362,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19372,7 +19372,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19382,7 +19382,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19392,7 +19392,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19402,7 +19402,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19412,7 +19412,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19422,7 +19422,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19432,7 +19432,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19442,7 +19442,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19452,7 +19452,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19462,7 +19462,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19472,7 +19472,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19482,7 +19482,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19492,7 +19492,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19502,7 +19502,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19512,7 +19512,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19522,7 +19522,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19532,7 +19532,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19542,7 +19542,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19552,7 +19552,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19562,7 +19562,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19572,7 +19572,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19582,7 +19582,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19592,7 +19592,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19602,7 +19602,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19612,7 +19612,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19622,7 +19622,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19632,7 +19632,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19642,7 +19642,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19652,7 +19652,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19662,7 +19662,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19672,7 +19672,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19682,7 +19682,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19692,7 +19692,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19702,7 +19702,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19712,7 +19712,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -19722,7 +19722,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glProgramUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -19741,7 +19741,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// /// Push a named debug group into the command stream @@ -19760,7 +19760,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroup")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels @@ -19770,7 +19770,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.ES31.All src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES31.All src) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Select a color buffer source for pixels @@ -19779,7 +19779,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a color buffer. Accepted values are Back, None, and ColorAttachmenti. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.ES31.ReadBufferMode src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES31.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// /// @@ -19791,7 +19791,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// @@ -19806,7 +19806,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19821,7 +19821,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19836,7 +19836,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// @@ -19850,7 +19850,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19878,7 +19878,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19909,7 +19909,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19940,7 +19940,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -19971,7 +19971,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20001,7 +20001,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20028,7 +20028,7 @@ namespace OpenTK.Graphics.ES31 /// Returns the pixel data. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20058,7 +20058,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20088,7 +20088,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20118,7 +20118,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Read a block of pixels from the frame buffer @@ -20147,13 +20147,13 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Release resources consumed by the implementation's shader compiler /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -20172,7 +20172,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -20190,7 +20190,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.ES31.RenderbufferTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -20211,13 +20211,13 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Resume transform feedback operations /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glResumeTransformFeedback")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify multisample coverage parameters @@ -20229,7 +20229,7 @@ namespace OpenTK.Graphics.ES31 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Set the value of a sub-word of the sample mask @@ -20242,7 +20242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new NotImplementedException(); } + public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Set the value of a sub-word of the sample mask @@ -20255,7 +20255,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new NotImplementedException(); } + public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20271,7 +20271,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20287,7 +20287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20303,7 +20303,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20319,7 +20319,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20335,7 +20335,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20351,7 +20351,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20367,7 +20367,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20383,7 +20383,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20399,7 +20399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20415,7 +20415,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20431,7 +20431,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Set sampler parameters @@ -20447,7 +20447,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define the scissor box @@ -20465,7 +20465,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20487,7 +20487,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20511,7 +20511,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20535,7 +20535,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20559,7 +20559,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20583,7 +20583,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20605,7 +20605,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20629,7 +20629,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20653,7 +20653,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20677,7 +20677,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20701,7 +20701,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20723,7 +20723,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20747,7 +20747,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20771,7 +20771,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20795,7 +20795,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20819,7 +20819,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20841,7 +20841,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20865,7 +20865,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20889,7 +20889,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20913,7 +20913,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20937,7 +20937,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20959,7 +20959,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -20983,7 +20983,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21007,7 +21007,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21031,7 +21031,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21055,7 +21055,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21077,7 +21077,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21101,7 +21101,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21125,7 +21125,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21149,7 +21149,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Load pre-compiled shader binaries @@ -21173,7 +21173,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.ES31.All binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21192,7 +21192,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21211,7 +21211,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21230,7 +21230,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21249,7 +21249,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21268,7 +21268,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Replaces the source code in a shader object @@ -21287,7 +21287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21304,7 +21304,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21321,7 +21321,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21337,7 +21337,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back function and reference value for stencil testing @@ -21353,7 +21353,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")] [CLSCompliant(false)] - public static void StencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21373,7 +21373,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All face, OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21393,7 +21393,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All face, OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21412,7 +21412,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back function and reference value for stencil testing @@ -21431,7 +21431,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -21441,7 +21441,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(Int32 mask) { throw new NotImplementedException(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and back writing of individual bits in the stencil planes @@ -21451,7 +21451,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21465,7 +21465,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES31.All face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21479,7 +21479,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES31.All face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21492,7 +21492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, Int32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -21505,7 +21505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")] [CLSCompliant(false)] - public static void StencilMaskSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -21521,7 +21521,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES31.All fail, OpenTK.Graphics.ES31.All zfail, OpenTK.Graphics.ES31.All zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES31.All fail, OpenTK.Graphics.ES31.All zfail, OpenTK.Graphics.ES31.All zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and back stencil test actions @@ -21536,7 +21536,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.ES31.StencilOp fail, OpenTK.Graphics.ES31.StencilOp zfail, OpenTK.Graphics.ES31.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.ES31.StencilOp fail, OpenTK.Graphics.ES31.StencilOp zfail, OpenTK.Graphics.ES31.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -21555,7 +21555,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All sfail, OpenTK.Graphics.ES31.All dpfail, OpenTK.Graphics.ES31.All dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All sfail, OpenTK.Graphics.ES31.All dpfail, OpenTK.Graphics.ES31.All dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set front and/or back stencil test actions @@ -21573,7 +21573,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilOp sfail, OpenTK.Graphics.ES31.StencilOp dpfail, OpenTK.Graphics.ES31.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.ES31.StencilFaceDirection face, OpenTK.Graphics.ES31.StencilOp sfail, OpenTK.Graphics.ES31.StencilOp dpfail, OpenTK.Graphics.ES31.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21607,7 +21607,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21644,7 +21644,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21681,7 +21681,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21718,7 +21718,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21754,7 +21754,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21787,7 +21787,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] - public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21823,7 +21823,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21859,7 +21859,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21895,7 +21895,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture image @@ -21930,7 +21930,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexImage2D")] public static void TexImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -21967,7 +21967,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22007,7 +22007,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22047,7 +22047,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22087,7 +22087,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22126,7 +22126,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22162,7 +22162,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] - public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22201,7 +22201,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22240,7 +22240,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22279,7 +22279,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture image @@ -22317,7 +22317,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexImage3D")] public static void TexImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, OpenTK.Graphics.ES31.TextureComponentCount internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22333,7 +22333,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22348,7 +22348,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22365,7 +22365,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22382,7 +22382,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22398,7 +22398,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22414,7 +22414,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameterfv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22430,7 +22430,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22445,7 +22445,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the value of pname. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22462,7 +22462,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22479,7 +22479,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22495,7 +22495,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set texture parameters @@ -22511,7 +22511,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexParameteriv")] [CLSCompliant(false)] - public static unsafe void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -22532,7 +22532,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify storage for a two-dimensional multisample texture @@ -22556,7 +22556,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glTexStorage2DMultisample")] - public static void TexStorage2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -22580,7 +22580,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22614,7 +22614,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22651,7 +22651,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22688,7 +22688,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22725,7 +22725,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22761,7 +22761,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22794,7 +22794,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] - public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22830,7 +22830,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22866,7 +22866,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22902,7 +22902,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify a two-dimensional texture subimage @@ -22937,7 +22937,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glTexSubImage2D")] public static void TexSubImage2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -22977,7 +22977,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] - public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23020,7 +23020,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23063,7 +23063,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23106,7 +23106,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23148,7 +23148,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23187,7 +23187,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] - public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23229,7 +23229,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23271,7 +23271,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23313,7 +23313,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify a three-dimensional texture subimage @@ -23354,7 +23354,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTexSubImage3D")] public static void TexSubImage3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23373,7 +23373,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES31.All bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES31.All bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify values to record in transform feedback buffers @@ -23392,7 +23392,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES31.All bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.ES31.All bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23404,7 +23404,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23420,7 +23420,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23436,7 +23436,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23452,7 +23452,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23464,7 +23464,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23480,7 +23480,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23496,7 +23496,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23512,7 +23512,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23525,7 +23525,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23541,7 +23541,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23557,7 +23557,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23573,7 +23573,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23588,7 +23588,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23604,7 +23604,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23620,7 +23620,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23636,7 +23636,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23651,7 +23651,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23667,7 +23667,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23683,7 +23683,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23699,7 +23699,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23715,7 +23715,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23731,7 +23731,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23747,7 +23747,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23765,7 +23765,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23781,7 +23781,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23797,7 +23797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23813,7 +23813,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23831,7 +23831,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23847,7 +23847,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23863,7 +23863,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23879,7 +23879,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23898,7 +23898,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23914,7 +23914,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23930,7 +23930,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -23946,7 +23946,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23967,7 +23967,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23983,7 +23983,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -23999,7 +23999,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24015,7 +24015,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24036,7 +24036,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24052,7 +24052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24068,7 +24068,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specify the value of a uniform variable for the current program object @@ -24084,7 +24084,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24106,7 +24106,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24122,7 +24122,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24138,7 +24138,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Specify the value of a uniform variable for the current program object @@ -24154,7 +24154,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Assign a binding point to an active uniform block @@ -24170,7 +24170,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Assign a binding point to an active uniform block @@ -24186,7 +24186,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24195,7 +24195,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24204,7 +24204,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24213,7 +24213,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24222,7 +24222,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24231,7 +24231,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24240,7 +24240,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24249,7 +24249,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24258,7 +24258,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24267,7 +24267,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24276,7 +24276,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24285,7 +24285,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24294,7 +24294,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24303,7 +24303,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24312,7 +24312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24321,7 +24321,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24330,7 +24330,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24339,7 +24339,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24348,7 +24348,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24357,7 +24357,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24366,7 +24366,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// @@ -24375,7 +24375,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24384,7 +24384,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24393,7 +24393,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24402,7 +24402,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24411,7 +24411,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24420,7 +24420,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -24429,18 +24429,18 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.ES31.BufferTargetArb target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES31.BufferTargetArb target) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Installs a program object as part of current rendering state @@ -24450,7 +24450,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(Int32 program) { throw new NotImplementedException(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Installs a program object as part of current rendering state @@ -24460,7 +24460,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind stages of a program object to a program pipeline @@ -24476,7 +24476,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Bind stages of a program object to a program pipeline @@ -24492,7 +24492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glUseProgramStages")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -24502,7 +24502,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(Int32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Validates a program object @@ -24512,7 +24512,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Validate a program pipeline object against current GL state @@ -24522,7 +24522,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glValidateProgramPipeline")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Validate a program pipeline object against current GL state @@ -24532,7 +24532,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glValidateProgramPipeline")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24545,7 +24545,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(Int32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24558,7 +24558,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24571,7 +24571,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24584,7 +24584,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24600,7 +24600,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24616,7 +24616,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24629,7 +24629,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24642,7 +24642,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24655,7 +24655,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24668,7 +24668,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24681,7 +24681,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24694,7 +24694,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24713,7 +24713,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24732,7 +24732,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24745,7 +24745,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24758,7 +24758,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24771,7 +24771,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24784,7 +24784,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24797,7 +24797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24810,7 +24810,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24832,7 +24832,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24854,7 +24854,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24867,7 +24867,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24880,7 +24880,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24893,7 +24893,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24906,7 +24906,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24919,7 +24919,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Specifies the value of a generic vertex attribute @@ -24932,7 +24932,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Associate a vertex attribute and a vertex buffer binding @@ -24945,7 +24945,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribBinding")] [CLSCompliant(false)] - public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Associate a vertex attribute and a vertex buffer binding @@ -24958,7 +24958,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribBinding")] [CLSCompliant(false)] - public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -24971,7 +24971,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -24984,7 +24984,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the organization of vertex arrays @@ -25006,7 +25006,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribFormat")] [CLSCompliant(false)] - public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Specify the organization of vertex arrays @@ -25028,7 +25028,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribFormat")] [CLSCompliant(false)] - public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25038,7 +25038,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25048,49 +25048,49 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25100,28 +25100,28 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// /// [length: 4] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -25130,7 +25130,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribIFormat")] [CLSCompliant(false)] - public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// @@ -25139,7 +25139,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexAttribIFormat")] [CLSCompliant(false)] - public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.ES31.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25149,7 +25149,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25161,7 +25161,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25173,7 +25173,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25185,7 +25185,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25197,7 +25197,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25207,7 +25207,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")] [CLSCompliant(false)] - public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25219,7 +25219,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25231,7 +25231,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25243,7 +25243,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// @@ -25255,7 +25255,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25281,7 +25281,7 @@ namespace OpenTK.Graphics.ES31 [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.ES31.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25309,7 +25309,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25337,7 +25337,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25365,7 +25365,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25393,7 +25393,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25418,7 +25418,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25445,7 +25445,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25472,7 +25472,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25499,7 +25499,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25526,7 +25526,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25552,7 +25552,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25580,7 +25580,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25608,7 +25608,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25636,7 +25636,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25664,7 +25664,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25689,7 +25689,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")] [CLSCompliant(false)] - public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25716,7 +25716,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25743,7 +25743,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25770,7 +25770,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Define an array of generic vertex attribute data @@ -25797,7 +25797,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.ES31.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Modify the rate at which generic vertex attributes advance @@ -25810,7 +25810,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexBindingDivisor")] [CLSCompliant(false)] - public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ES_VERSION_3_1] /// Modify the rate at which generic vertex attributes advance @@ -25823,7 +25823,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_1", Version = "3.1", EntryPoint = "glVertexBindingDivisor")] [CLSCompliant(false)] - public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0 or ES_VERSION_2_0] /// Set the viewport @@ -25841,7 +25841,7 @@ namespace OpenTK.Graphics.ES31 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -25857,7 +25857,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ES_VERSION_3_0] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -25873,7 +25873,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -25883,7 +25883,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// @@ -25891,19 +25891,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -25916,7 +25916,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -25929,7 +25929,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -25942,7 +25942,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES31.All target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delimit the boundaries of a query object @@ -25955,7 +25955,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.ES31.All target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -25971,7 +25971,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number @@ -25987,7 +25987,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -26006,7 +26006,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -26025,7 +26025,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glBindFragDataLocationIndexedEXT")] [CLSCompliant(false)] - public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -26035,7 +26035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -26045,7 +26045,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26055,7 +26055,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26064,7 +26064,7 @@ namespace OpenTK.Graphics.ES31 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.ES31.BlendEquationModeExt mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26077,7 +26077,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26090,7 +26090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiEXT")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26106,7 +26106,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -26122,7 +26122,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiEXT")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -26136,7 +26136,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic @@ -26150,7 +26150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciEXT")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26172,7 +26172,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26194,7 +26194,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiEXT")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26213,7 +26213,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26232,7 +26232,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26253,7 +26253,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26274,7 +26274,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26295,7 +26295,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26316,7 +26316,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26337,7 +26337,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26358,7 +26358,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26379,7 +26379,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26400,7 +26400,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26419,7 +26419,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26438,7 +26438,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_buffer_storage", Version = "", EntryPoint = "glBufferStorageEXT")] [CLSCompliant(false)] - public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26459,7 +26459,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26480,7 +26480,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26501,7 +26501,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26522,7 +26522,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26543,7 +26543,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26564,7 +26564,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26585,7 +26585,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_buffer_storage] /// Creates and initializes a buffer object's immutable data store @@ -26606,7 +26606,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.ES31.All target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26616,7 +26616,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26626,7 +26626,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26636,7 +26636,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -26646,7 +26646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26656,7 +26656,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26666,7 +26666,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26676,7 +26676,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26686,7 +26686,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.All target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26695,7 +26695,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26704,7 +26704,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26713,7 +26713,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -26722,7 +26722,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.ES31.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26730,7 +26730,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26738,7 +26738,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26746,7 +26746,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26754,7 +26754,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26762,7 +26762,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new NotImplementedException(); } + public static void ClearPixelLocalStorage(Int32 offset, Int32 n, ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// @@ -26770,7 +26770,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glClearPixelLocalStorageuiEXT")] [CLSCompliant(false)] - public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new NotImplementedException(); } + public static unsafe void ClearPixelLocalStorage(Int32 offset, Int32 n, UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26792,7 +26792,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26816,7 +26816,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26840,7 +26840,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26864,7 +26864,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26888,7 +26888,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26910,7 +26910,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexImageEXT")] [CLSCompliant(false)] - public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26934,7 +26934,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26958,7 +26958,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -26982,7 +26982,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all a texture image with a constant value @@ -27006,7 +27006,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27046,7 +27046,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27088,7 +27088,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27130,7 +27130,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27172,7 +27172,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27214,7 +27214,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27254,7 +27254,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_clear_texture", Version = "", EntryPoint = "glClearTexSubImageEXT")] [CLSCompliant(false)] - public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27296,7 +27296,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27338,7 +27338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27380,7 +27380,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_clear_texture] /// Fills all or part of a texture image with a constant value @@ -27422,7 +27422,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ClearTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -27442,7 +27442,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -27462,7 +27462,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiEXT")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -27514,7 +27514,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_image] /// Perform a raw data copy between two images @@ -27566,49 +27566,49 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_copy_image", Version = "", EntryPoint = "glCopyImageSubDataEXT")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -27620,7 +27620,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -27635,61 +27635,61 @@ namespace OpenTK.Graphics.ES31 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.ES31.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27699,7 +27699,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27709,7 +27709,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27722,7 +27722,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27735,7 +27735,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27748,7 +27748,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27761,7 +27761,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27774,7 +27774,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -27787,7 +27787,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27797,7 +27797,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27807,7 +27807,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27820,7 +27820,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27833,7 +27833,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27846,7 +27846,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27859,7 +27859,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27872,7 +27872,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Delete named query objects @@ -27885,75 +27885,75 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glDeleteQueriesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glDisableiEXT")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -27961,7 +27961,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -27969,7 +27969,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new NotImplementedException(); } + public static void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.ES31.All attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_discard_framebuffer] /// @@ -27977,7 +27977,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numAttachments] [AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")] [CLSCompliant(false)] - public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new NotImplementedException(); } + public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES31.All target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.ES31.All* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28000,7 +28000,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28023,7 +28023,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28045,7 +28045,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -28067,7 +28067,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawArraysInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -28086,7 +28086,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a range of elements @@ -28104,7 +28104,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28117,7 +28117,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28130,7 +28130,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES31.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, ref OpenTK.Graphics.ES31.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -28143,7 +28143,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers", Version = "", EntryPoint = "glDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.ES31.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28151,7 +28151,7 @@ namespace OpenTK.Graphics.ES31 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] location, [CountAttribute(Parameter = "n")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28159,7 +28159,7 @@ namespace OpenTK.Graphics.ES31 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new NotImplementedException(); } + public static void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All location, [CountAttribute(Parameter = "n")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -28167,7 +28167,7 @@ namespace OpenTK.Graphics.ES31 /// [length: n] [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glDrawBuffersIndexedEXT")] [CLSCompliant(false)] - public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void DrawBuffersIndexed(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* location, [CountAttribute(Parameter = "n")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28189,7 +28189,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28214,7 +28214,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28239,7 +28239,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28264,7 +28264,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28288,7 +28288,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28309,7 +28309,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28333,7 +28333,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28357,7 +28357,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28381,7 +28381,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -28404,7 +28404,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexEXT")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28430,7 +28430,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28456,7 +28456,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28484,7 +28484,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28512,7 +28512,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28540,7 +28540,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28568,7 +28568,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28596,7 +28596,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28624,7 +28624,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28652,7 +28652,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28680,7 +28680,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28705,7 +28705,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28730,7 +28730,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28757,7 +28757,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28784,7 +28784,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28811,7 +28811,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28838,7 +28838,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28865,7 +28865,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28892,7 +28892,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28919,7 +28919,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -28946,7 +28946,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -28975,7 +28975,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29004,7 +29004,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29035,7 +29035,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29066,7 +29066,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29097,7 +29097,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29128,7 +29128,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29159,7 +29159,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29190,7 +29190,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29221,7 +29221,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29252,7 +29252,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29280,7 +29280,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29308,7 +29308,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_base_instance", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexBaseInstanceEXT")] [CLSCompliant(false)] - public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29338,7 +29338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29368,7 +29368,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29398,7 +29398,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29428,7 +29428,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29458,7 +29458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29488,7 +29488,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29518,7 +29518,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_base_instance] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29548,7 +29548,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29573,7 +29573,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29601,7 +29601,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29629,7 +29629,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29657,7 +29657,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29684,7 +29684,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29708,7 +29708,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29735,7 +29735,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29762,7 +29762,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29789,7 +29789,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -29815,7 +29815,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexEXT")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29837,7 +29837,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29862,7 +29862,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29887,7 +29887,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29912,7 +29912,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29936,7 +29936,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29957,7 +29957,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -29981,7 +29981,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30005,7 +30005,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30029,7 +30029,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced|EXT_instanced_arrays] /// Draw multiple instances of a set of elements @@ -30052,7 +30052,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_draw_instanced|EXT_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30081,7 +30081,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30112,7 +30112,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30143,7 +30143,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30174,7 +30174,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30205,7 +30205,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30234,7 +30234,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30265,7 +30265,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30296,7 +30296,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30327,7 +30327,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30358,7 +30358,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30386,7 +30386,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30416,7 +30416,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30446,7 +30446,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30476,7 +30476,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30506,7 +30506,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30534,7 +30534,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30564,7 +30564,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30594,7 +30594,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30624,7 +30624,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -30654,7 +30654,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -30668,7 +30668,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES31.All mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES31.All mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -30682,7 +30682,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES31.All mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES31.All mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -30695,7 +30695,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render primitives using a count derived from a transform feedback object @@ -30708,7 +30708,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -30725,7 +30725,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.All mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.All mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -30742,7 +30742,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.All mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.All mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -30758,7 +30758,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_transform_feedback] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -30774,7 +30774,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_transform_feedback", Version = "", EntryPoint = "glDrawTransformFeedbackInstancedEXT")] [CLSCompliant(false)] - public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -30785,7 +30785,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Enable or disable server-side GL capabilities @@ -30796,12 +30796,12 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glEnableiEXT")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glEndQueryEXT")] - public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -30816,7 +30816,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -30831,21 +30831,21 @@ namespace OpenTK.Graphics.ES31 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")] - public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(Int32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new NotImplementedException(); } + public static void FramebufferPixelLocalStorageSize(UInt32 target, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -30856,7 +30856,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// @@ -30867,7 +30867,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -30887,7 +30887,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -30907,7 +30907,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -30926,7 +30926,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -30945,14 +30945,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureEXT")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -30965,7 +30965,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -30978,7 +30978,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -30991,7 +30991,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31004,7 +31004,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31017,7 +31017,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -31030,14 +31030,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31050,7 +31050,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31063,7 +31063,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31076,7 +31076,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31089,7 +31089,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31102,7 +31102,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Generate query object names @@ -31115,54 +31115,54 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGenQueriesEXT")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static Int32 GenSemaphore() { throw new NotImplementedException(); } + public static Int32 GenSemaphore() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31175,7 +31175,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(Int32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the bindings of color indices to user-defined varying out variables @@ -31188,23 +31188,23 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetFragDataIndexEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(Int32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_pixel_local_storage2] /// [AutoGenerated(Category = "EXT_shader_pixel_local_storage2", Version = "", EntryPoint = "glGetFramebufferPixelLocalStorageSizeEXT")] [CLSCompliant(false)] - public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new NotImplementedException(); } + public static Int32 GetFramebufferPixelLocalStorageSize(UInt32 target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusEXT")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31212,7 +31212,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31220,7 +31220,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31228,7 +31228,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31236,7 +31236,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31244,7 +31244,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// @@ -31252,7 +31252,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31261,7 +31261,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31270,7 +31270,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31279,7 +31279,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31287,7 +31287,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31295,7 +31295,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31303,7 +31303,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31312,7 +31312,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31321,7 +31321,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31330,7 +31330,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31338,7 +31338,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31346,7 +31346,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -31354,7 +31354,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31363,7 +31363,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31372,7 +31372,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31381,7 +31381,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31390,7 +31390,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31399,7 +31399,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31408,7 +31408,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31417,7 +31417,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31426,7 +31426,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31435,7 +31435,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31444,7 +31444,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31453,7 +31453,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -31462,7 +31462,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31484,7 +31484,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31506,7 +31506,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31528,7 +31528,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31550,7 +31550,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31572,7 +31572,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -31594,7 +31594,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31614,7 +31614,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31634,7 +31634,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31654,7 +31654,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31674,7 +31674,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31694,7 +31694,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -31714,7 +31714,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31730,7 +31730,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31746,7 +31746,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31762,7 +31762,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31778,7 +31778,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31794,7 +31794,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -31810,7 +31810,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -31826,7 +31826,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_extended] /// Query the fragment color index of a named variable within a program @@ -31842,7 +31842,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_blend_func_extended", Version = "", EntryPoint = "glGetProgramResourceLocationIndexEXT")] [CLSCompliant(false)] - public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.ES31.All programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -31850,7 +31850,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -31858,7 +31858,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// @@ -31866,7 +31866,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryivEXT")] [CLSCompliant(false)] - public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31882,7 +31882,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31898,7 +31898,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31914,7 +31914,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31930,7 +31930,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31946,7 +31946,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31962,7 +31962,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31978,7 +31978,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -31994,7 +31994,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32010,7 +32010,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32026,7 +32026,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32042,7 +32042,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32058,7 +32058,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32074,7 +32074,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32090,7 +32090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Return parameters of a query object @@ -32106,7 +32106,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -32122,7 +32122,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -32138,7 +32138,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Return parameters of a query object @@ -32154,7 +32154,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glGetQueryObjectuivEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32162,7 +32162,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32170,7 +32170,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32178,7 +32178,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32186,7 +32186,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32194,7 +32194,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32202,7 +32202,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32210,7 +32210,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32218,7 +32218,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32226,7 +32226,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32235,7 +32235,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32244,7 +32244,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32253,7 +32253,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32261,7 +32261,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32269,7 +32269,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32277,7 +32277,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32286,7 +32286,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32295,7 +32295,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32304,7 +32304,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32312,7 +32312,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32320,7 +32320,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -32328,7 +32328,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32337,7 +32337,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32346,7 +32346,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32355,7 +32355,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32363,7 +32363,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32371,7 +32371,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32379,7 +32379,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32388,7 +32388,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32397,7 +32397,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32406,7 +32406,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32414,7 +32414,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32422,7 +32422,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -32430,7 +32430,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32438,7 +32438,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32446,7 +32446,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32454,7 +32454,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32462,7 +32462,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32470,7 +32470,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32478,20 +32478,20 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES31.All pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES31.All pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32499,7 +32499,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32507,7 +32507,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -32515,28 +32515,28 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.ES31.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -32546,7 +32546,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -32555,7 +32555,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -32565,7 +32565,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -32574,7 +32574,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32584,7 +32584,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32596,7 +32596,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32608,7 +32608,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32620,7 +32620,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32632,7 +32632,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32641,7 +32641,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32652,7 +32652,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32663,7 +32663,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32674,7 +32674,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32685,7 +32685,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32695,7 +32695,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32707,7 +32707,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32719,7 +32719,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32731,7 +32731,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32743,7 +32743,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32752,7 +32752,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32763,7 +32763,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32774,7 +32774,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32785,7 +32785,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32796,7 +32796,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32806,7 +32806,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32818,7 +32818,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32830,7 +32830,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32842,7 +32842,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32854,7 +32854,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32863,7 +32863,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32874,7 +32874,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32885,7 +32885,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32896,7 +32896,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32907,7 +32907,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32917,7 +32917,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32929,7 +32929,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32941,7 +32941,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32953,7 +32953,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32965,7 +32965,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32974,7 +32974,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32985,7 +32985,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -32996,7 +32996,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33007,7 +33007,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -33018,7 +33018,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -33027,7 +33027,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -33035,7 +33035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -33044,7 +33044,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -33052,7 +33052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33061,7 +33061,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33072,7 +33072,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33083,7 +33083,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33094,7 +33094,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33105,7 +33105,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33113,7 +33113,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33123,7 +33123,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33133,7 +33133,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33143,7 +33143,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33153,7 +33153,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33162,7 +33162,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33173,7 +33173,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33184,7 +33184,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33195,7 +33195,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33206,7 +33206,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33214,7 +33214,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33224,7 +33224,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33234,7 +33234,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33244,7 +33244,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33254,7 +33254,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33263,7 +33263,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33274,7 +33274,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33285,7 +33285,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33296,7 +33296,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33307,7 +33307,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33315,7 +33315,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33325,7 +33325,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33335,7 +33335,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33345,7 +33345,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33355,7 +33355,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33364,7 +33364,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33375,7 +33375,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33386,7 +33386,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33397,7 +33397,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33408,7 +33408,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.All handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33416,7 +33416,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33426,7 +33426,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33436,7 +33436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33446,7 +33446,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -33456,13 +33456,13 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.ES31.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -33475,7 +33475,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers_indexed] /// Test whether a capability is enabled @@ -33488,19 +33488,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_buffers_indexed", Version = "", EntryPoint = "glIsEnablediEXT")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(Int32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(Int32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(UInt32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(UInt32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -33510,7 +33510,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -33520,7 +33520,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -33530,7 +33530,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query|EXT_occlusion_query_boolean] /// Determine if a name corresponds to a query object @@ -33540,19 +33540,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glIsQueryEXT")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(Int32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(Int32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(UInt32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(UInt32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -33561,7 +33561,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.ES31.All type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -33570,7 +33570,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.ES31.All type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33589,7 +33589,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33608,7 +33608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, Int32 length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33627,7 +33627,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, Int32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, Int32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_map_buffer_range] /// Map a section of a buffer object's data store @@ -33646,7 +33646,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.ES31.All target, IntPtr offset, IntPtr length, UInt32 access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33655,7 +33655,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33664,7 +33664,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33673,7 +33673,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33681,7 +33681,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33689,7 +33689,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33697,7 +33697,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33706,7 +33706,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33715,7 +33715,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33724,7 +33724,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33732,7 +33732,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33740,7 +33740,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -33748,7 +33748,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.ES31.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33768,7 +33768,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33788,7 +33788,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33808,7 +33808,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33827,7 +33827,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33846,7 +33846,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -33865,7 +33865,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33884,7 +33884,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33906,7 +33906,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33928,7 +33928,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33950,7 +33950,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33971,7 +33971,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.All mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -33989,7 +33989,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -34010,7 +34010,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -34031,7 +34031,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -34052,7 +34052,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -34072,7 +34072,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectEXT")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34098,7 +34098,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34126,7 +34126,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34154,7 +34154,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34182,7 +34182,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34210,7 +34210,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34236,7 +34236,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34264,7 +34264,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34292,7 +34292,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34320,7 +34320,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34348,7 +34348,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34374,7 +34374,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34402,7 +34402,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34430,7 +34430,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34458,7 +34458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34486,7 +34486,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34511,7 +34511,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34538,7 +34538,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34565,7 +34565,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34592,7 +34592,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34619,7 +34619,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34644,7 +34644,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34671,7 +34671,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34698,7 +34698,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34725,7 +34725,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34752,7 +34752,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34777,7 +34777,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex", Version = "", EntryPoint = "glMultiDrawElementsBaseVertexEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34804,7 +34804,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34831,7 +34831,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34858,7 +34858,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_elements_base_vertex|OES_draw_elements_base_vertex] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -34885,7 +34885,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 primcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -34908,7 +34908,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -34933,7 +34933,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -34958,7 +34958,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -34983,7 +34983,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35008,7 +35008,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35031,7 +35031,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35056,7 +35056,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35081,7 +35081,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35106,7 +35106,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35131,7 +35131,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35154,7 +35154,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35179,7 +35179,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35204,7 +35204,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35229,7 +35229,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35254,7 +35254,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.All mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35276,7 +35276,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35300,7 +35300,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35324,7 +35324,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35348,7 +35348,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35372,7 +35372,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35394,7 +35394,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35418,7 +35418,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35442,7 +35442,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35466,7 +35466,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35490,7 +35490,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35512,7 +35512,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35536,7 +35536,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35560,7 +35560,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35584,7 +35584,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -35608,7 +35608,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.ES31.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35630,7 +35630,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35655,7 +35655,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35680,7 +35680,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35705,7 +35705,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35729,7 +35729,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.All mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35750,7 +35750,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35774,7 +35774,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35798,7 +35798,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35822,7 +35822,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -35845,7 +35845,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectEXT")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.ES31.PrimitiveType mode, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35855,7 +35855,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35865,7 +35865,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35875,7 +35875,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -35885,7 +35885,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35894,7 +35894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35903,7 +35903,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35912,7 +35912,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -35921,7 +35921,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_tessellation_shader] /// Specifies the parameters for patch primitives @@ -35933,18 +35933,18 @@ namespace OpenTK.Graphics.ES31 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "EXT_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriEXT")] - public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_primitive_bounding_box] /// @@ -35956,7 +35956,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "EXT_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxEXT")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -35972,7 +35972,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -35988,7 +35988,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36004,7 +36004,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36020,7 +36020,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36039,7 +36039,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36058,7 +36058,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36077,7 +36077,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36096,7 +36096,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36115,7 +36115,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36134,7 +36134,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36150,7 +36150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36166,7 +36166,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1iEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36185,7 +36185,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36204,7 +36204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36223,7 +36223,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36242,7 +36242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36261,7 +36261,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36280,7 +36280,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36296,7 +36296,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uiEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36315,7 +36315,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36334,7 +36334,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36353,7 +36353,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36372,7 +36372,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36391,7 +36391,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36410,7 +36410,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36429,7 +36429,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36448,7 +36448,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36467,7 +36467,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36486,7 +36486,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36505,7 +36505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36524,7 +36524,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36543,7 +36543,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36562,7 +36562,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36581,7 +36581,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36600,7 +36600,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36619,7 +36619,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36638,7 +36638,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36657,7 +36657,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36676,7 +36676,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36695,7 +36695,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36717,7 +36717,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36739,7 +36739,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36758,7 +36758,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36777,7 +36777,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36796,7 +36796,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36815,7 +36815,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36834,7 +36834,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36853,7 +36853,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36875,7 +36875,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36897,7 +36897,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36916,7 +36916,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36935,7 +36935,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36954,7 +36954,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36973,7 +36973,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -36992,7 +36992,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37011,7 +37011,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37033,7 +37033,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37052,7 +37052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37071,7 +37071,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37090,7 +37090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37115,7 +37115,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37140,7 +37140,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37159,7 +37159,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37178,7 +37178,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37197,7 +37197,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37216,7 +37216,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37235,7 +37235,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37254,7 +37254,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37279,7 +37279,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37304,7 +37304,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37323,7 +37323,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37342,7 +37342,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37361,7 +37361,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37380,7 +37380,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37399,7 +37399,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37418,7 +37418,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4ivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37443,7 +37443,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37462,7 +37462,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37481,7 +37481,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -37500,7 +37500,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37510,7 +37510,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37520,7 +37520,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37530,7 +37530,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37540,7 +37540,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37550,7 +37550,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37560,7 +37560,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*4] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37570,7 +37570,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37580,7 +37580,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37590,7 +37590,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37600,7 +37600,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37610,7 +37610,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37620,7 +37620,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37630,7 +37630,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37640,7 +37640,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37650,7 +37650,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37660,7 +37660,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37670,7 +37670,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37680,7 +37680,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix2x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37690,7 +37690,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37700,7 +37700,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37710,7 +37710,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37720,7 +37720,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37730,7 +37730,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37740,7 +37740,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*9] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37750,7 +37750,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37760,7 +37760,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37770,7 +37770,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37780,7 +37780,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37790,7 +37790,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37800,7 +37800,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37810,7 +37810,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37820,7 +37820,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37830,7 +37830,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37840,7 +37840,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37850,7 +37850,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37860,7 +37860,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix3x4fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37870,7 +37870,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37880,7 +37880,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37890,7 +37890,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37900,7 +37900,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37910,7 +37910,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -37920,7 +37920,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37930,7 +37930,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37940,7 +37940,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37950,7 +37950,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37960,7 +37960,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37970,7 +37970,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37980,7 +37980,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x2fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -37990,7 +37990,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38000,7 +38000,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38010,7 +38010,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38020,7 +38020,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38030,7 +38030,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// @@ -38040,13 +38040,13 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramUniformMatrix4x3fvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -38059,7 +38059,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] - public static void QueryCounter(Int32 id, OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_disjoint_timer_query] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -38072,27 +38072,27 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glQueryCounterEXT")] [CLSCompliant(false)] - public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multiview_draw_buffers] /// /// [AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glReadBufferIndexedEXT")] - public static void ReadBufferIndexed(OpenTK.Graphics.ES31.All src, Int32 index) { throw new NotImplementedException(); } + public static void ReadBufferIndexed(OpenTK.Graphics.ES31.All src, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38104,7 +38104,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: bufSize] [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38119,7 +38119,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38134,7 +38134,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38149,7 +38149,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_robustness] /// @@ -38163,21 +38163,21 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -38198,7 +38198,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38206,7 +38206,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38214,7 +38214,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38222,7 +38222,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38230,7 +38230,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38238,7 +38238,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38246,7 +38246,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38254,7 +38254,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38262,7 +38262,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38270,7 +38270,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38279,7 +38279,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38288,7 +38288,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38297,7 +38297,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.All pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38305,7 +38305,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38313,7 +38313,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38321,7 +38321,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38330,7 +38330,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38339,7 +38339,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38348,7 +38348,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.All pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38356,7 +38356,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38364,7 +38364,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38372,7 +38372,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.ES31.SemaphoreParameterName pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38384,7 +38384,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38395,7 +38395,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38407,7 +38407,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38418,7 +38418,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38430,7 +38430,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38441,7 +38441,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38453,7 +38453,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38464,7 +38464,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38476,7 +38476,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38487,7 +38487,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38499,7 +38499,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -38510,7 +38510,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38527,7 +38527,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38544,7 +38544,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38560,7 +38560,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -38576,7 +38576,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferEXT")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38598,7 +38598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38620,7 +38620,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38642,7 +38642,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -38664,7 +38664,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeEXT")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_sparse_texture] /// @@ -38677,7 +38677,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "EXT_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentEXT")] - public static void TexPageCommitment(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38686,7 +38686,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38695,7 +38695,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38704,7 +38704,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38712,7 +38712,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38720,7 +38720,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38728,7 +38728,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38737,7 +38737,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38746,7 +38746,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38755,7 +38755,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38763,7 +38763,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38771,7 +38771,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_border_clamp] /// @@ -38779,7 +38779,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -38797,7 +38797,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")] - public static void TexStorage1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a two-dimensional texture @@ -38818,7 +38818,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")] - public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// Simultaneously specify storage for all levels of a three-dimensional or two-dimensional array texture @@ -38842,7 +38842,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")] - public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38854,7 +38854,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38866,7 +38866,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38877,7 +38877,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38888,7 +38888,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38901,7 +38901,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38914,7 +38914,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38926,7 +38926,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38938,7 +38938,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38952,7 +38952,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38966,7 +38966,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38979,7 +38979,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -38992,7 +38992,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39006,7 +39006,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39020,7 +39020,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39033,7 +39033,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39046,7 +39046,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.ES31.TextureTarget target, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39061,7 +39061,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39076,7 +39076,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39090,7 +39090,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39104,7 +39104,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.ES31.TextureTarget target, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39114,7 +39114,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39124,7 +39124,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39135,7 +39135,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39146,7 +39146,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39158,7 +39158,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_storage] /// @@ -39170,7 +39170,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES31.All target, Int32 levels, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39181,7 +39181,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39192,7 +39192,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39204,7 +39204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39216,7 +39216,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39229,7 +39229,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39242,7 +39242,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39255,7 +39255,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39268,7 +39268,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39282,7 +39282,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -39296,7 +39296,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.ES31.All internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -39327,7 +39327,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -39358,7 +39358,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_texture_view", Version = "", EntryPoint = "glTextureViewEXT")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -39374,7 +39374,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -39390,21 +39390,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.ES31.All type, Int32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES31.All type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.ES31.All type, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.ES31.All type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -39414,7 +39414,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -39424,7 +39424,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -39437,7 +39437,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -39450,7 +39450,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "EXT_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39462,7 +39462,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39473,7 +39473,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39485,7 +39485,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39496,7 +39496,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39508,7 +39508,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39519,7 +39519,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39531,7 +39531,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39542,7 +39542,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39554,7 +39554,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.All srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39565,7 +39565,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.ES31.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39577,7 +39577,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.All* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -39588,7 +39588,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.ES31.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -39596,7 +39596,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -39604,7 +39604,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -39612,7 +39612,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.ES31.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } } @@ -39628,7 +39628,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39640,7 +39640,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTexture2DDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTexture2DDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -39651,7 +39651,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// @@ -39662,7 +39662,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")] [CLSCompliant(false)] - public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); } + public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39675,7 +39675,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39688,7 +39688,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39700,7 +39700,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_framebuffer_downsample] /// @@ -39712,33 +39712,33 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_framebuffer_downsample", Version = "", EntryPoint = "glFramebufferTextureLayerDownsampleIMG")] [CLSCompliant(false)] - public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new NotImplementedException(); } + public static void FramebufferTextureLayerDownsample(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer, Int32 xscale, Int32 yscale) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleIMG")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39746,7 +39746,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39754,7 +39754,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64IMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39763,7 +39763,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39772,7 +39772,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39781,7 +39781,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39790,7 +39790,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39799,7 +39799,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39808,7 +39808,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_multisampled_render_to_texture] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -39829,21 +39829,21 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// /// [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64IMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39851,7 +39851,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39859,7 +39859,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39867,7 +39867,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39875,7 +39875,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39883,7 +39883,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: IMG_bindless_texture] /// @@ -39891,7 +39891,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "IMG_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vIMG")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } } @@ -39901,174 +39901,174 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40084,7 +40084,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40100,7 +40100,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40116,7 +40116,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40132,7 +40132,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40148,7 +40148,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40164,7 +40164,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40174,7 +40174,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40184,7 +40184,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40194,7 +40194,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40206,7 +40206,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40218,7 +40218,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40230,7 +40230,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40242,7 +40242,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40254,7 +40254,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40266,7 +40266,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40278,7 +40278,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40290,7 +40290,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40302,7 +40302,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40314,7 +40314,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40326,7 +40326,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40338,7 +40338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40348,7 +40348,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40358,7 +40358,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40368,7 +40368,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40380,7 +40380,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40392,7 +40392,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40404,7 +40404,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40416,7 +40416,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40428,7 +40428,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40440,7 +40440,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40452,7 +40452,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40464,7 +40464,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40476,7 +40476,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40488,7 +40488,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40500,7 +40500,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40512,55 +40512,55 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40572,7 +40572,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40584,7 +40584,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40596,7 +40596,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40608,7 +40608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40620,7 +40620,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -40632,7 +40632,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -40640,7 +40640,7 @@ namespace OpenTK.Graphics.ES31 { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40652,7 +40652,7 @@ namespace OpenTK.Graphics.ES31 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40667,7 +40667,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40682,7 +40682,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40697,7 +40697,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -40711,7 +40711,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40736,7 +40736,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40761,7 +40761,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40786,7 +40786,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40811,7 +40811,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40836,7 +40836,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -40861,7 +40861,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")] [CLSCompliant(false)] - public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, OpenTK.Graphics.ES31.All severity, Int32 count, UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -40886,7 +40886,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, Int32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -40911,7 +40911,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")] [CLSCompliant(false)] - public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.ES31.All source, OpenTK.Graphics.ES31.All type, UInt32 id, OpenTK.Graphics.ES31.All severity, Int32 length, String buf) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -40942,7 +40942,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -40973,7 +40973,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -41004,7 +41004,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -41035,7 +41035,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -41066,7 +41066,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.ES31.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -41097,11 +41097,11 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.ES31.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41110,7 +41110,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41119,7 +41119,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41128,7 +41128,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41137,7 +41137,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41146,7 +41146,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41155,7 +41155,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41164,7 +41164,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41173,7 +41173,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41182,7 +41182,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41191,7 +41191,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41200,7 +41200,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41209,7 +41209,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41218,7 +41218,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41227,7 +41227,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41236,7 +41236,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41258,7 +41258,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41280,7 +41280,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41302,7 +41302,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41324,7 +41324,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41346,7 +41346,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -41368,7 +41368,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41388,7 +41388,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41408,7 +41408,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41428,7 +41428,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41450,7 +41450,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41472,7 +41472,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41494,7 +41494,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41516,7 +41516,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41538,7 +41538,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41560,7 +41560,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41582,7 +41582,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41604,7 +41604,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41626,7 +41626,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41648,7 +41648,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41670,7 +41670,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -41692,13 +41692,13 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -41707,7 +41707,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -41716,7 +41716,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -41725,7 +41725,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -41733,7 +41733,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -41752,7 +41752,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -41771,7 +41771,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")] [CLSCompliant(false)] - public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.ES31.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41786,7 +41786,7 @@ namespace OpenTK.Graphics.ES31 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41804,7 +41804,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41822,7 +41822,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41840,7 +41840,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -41857,13 +41857,13 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -41882,7 +41882,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -41901,7 +41901,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPushDebugGroupKHR")] [CLSCompliant(false)] - public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.ES31.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41914,7 +41914,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41930,7 +41930,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41946,7 +41946,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41962,7 +41962,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41977,7 +41977,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -41989,7 +41989,7 @@ namespace OpenTK.Graphics.ES31 /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42004,7 +42004,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42019,7 +42019,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42034,7 +42034,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -42048,7 +42048,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES31.PixelFormat format, OpenTK.Graphics.ES31.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -42065,7 +42065,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -42078,17 +42078,17 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -42125,7 +42125,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -42162,13 +42162,13 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferNV")] [CLSCompliant(false)] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.ES31.All filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -42189,7 +42189,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_buffer] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -42210,57 +42210,57 @@ namespace OpenTK.Graphics.ES31 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "NV_copy_buffer", Version = "", EntryPoint = "glCopyBufferSubDataNV")] - public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.ES31.All readTarget, OpenTK.Graphics.ES31.All writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageMaskNV")] - public static void CoverageMask(bool mask) { throw new NotImplementedException(); } + public static void CoverageMask(bool mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.ES31.All components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.ES31.All components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_coverage_sample] /// [AutoGenerated(Category = "NV_coverage_sample", Version = "", EntryPoint = "glCoverageOperationNV")] - public static void CoverageOperation(OpenTK.Graphics.ES31.All operation) { throw new NotImplementedException(); } + public static void CoverageOperation(OpenTK.Graphics.ES31.All operation) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42272,7 +42272,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42284,7 +42284,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42296,7 +42296,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42308,7 +42308,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42320,7 +42320,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42332,7 +42332,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42346,7 +42346,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42360,7 +42360,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42374,7 +42374,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42388,7 +42388,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42402,7 +42402,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42416,7 +42416,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42430,7 +42430,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42444,7 +42444,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42458,7 +42458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42472,7 +42472,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42486,7 +42486,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42500,7 +42500,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42514,7 +42514,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42528,7 +42528,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42542,7 +42542,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42556,7 +42556,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42570,7 +42570,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42584,7 +42584,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42598,7 +42598,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42612,7 +42612,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42626,7 +42626,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42640,7 +42640,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42654,7 +42654,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42668,21 +42668,21 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42694,7 +42694,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42706,7 +42706,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42718,7 +42718,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42730,7 +42730,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42742,7 +42742,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42754,7 +42754,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42768,7 +42768,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42782,7 +42782,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42796,7 +42796,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42810,7 +42810,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42824,7 +42824,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42838,7 +42838,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42852,7 +42852,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42866,7 +42866,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42880,7 +42880,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42894,7 +42894,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42908,7 +42908,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42922,7 +42922,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42936,7 +42936,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42950,7 +42950,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42964,7 +42964,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42978,7 +42978,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -42992,7 +42992,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43006,7 +43006,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43020,7 +43020,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43034,7 +43034,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43048,7 +43048,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43062,7 +43062,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43076,7 +43076,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43090,89 +43090,89 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43188,7 +43188,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43204,7 +43204,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43220,7 +43220,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43236,7 +43236,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43252,7 +43252,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -43268,7 +43268,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvNV")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -43284,7 +43284,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -43300,21 +43300,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfNV")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glDisableiNV")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -43333,7 +43333,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.All mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a range of elements @@ -43351,7 +43351,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedNV")] - public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -43364,7 +43364,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -43377,7 +43377,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.ES31.All bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -43390,7 +43390,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_buffers", Version = "", EntryPoint = "glDrawBuffersNV")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.ES31.All* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43412,7 +43412,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43437,7 +43437,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43462,7 +43462,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43487,7 +43487,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43511,7 +43511,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43532,7 +43532,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] - public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43556,7 +43556,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43580,7 +43580,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43604,7 +43604,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_instanced] /// Draw multiple instances of a set of elements @@ -43627,7 +43627,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "NV_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedNV")] public static void DrawElementsInstanced(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -43643,7 +43643,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -43659,7 +43659,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -43670,7 +43670,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Enable or disable server-side GL capabilities @@ -43681,35 +43681,35 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glEnableiNV")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43718,7 +43718,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43727,7 +43727,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43736,7 +43736,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43745,7 +43745,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43754,7 +43754,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -43763,85 +43763,85 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.ES31.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43849,7 +43849,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43857,7 +43857,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43865,7 +43865,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43873,7 +43873,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43881,7 +43881,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -43889,7 +43889,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43897,7 +43897,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43905,7 +43905,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43913,7 +43913,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43921,7 +43921,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43929,7 +43929,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// @@ -43937,7 +43937,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glGetFloati_vNV")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43947,7 +43947,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -43957,7 +43957,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.ES31.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -43968,7 +43968,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -43979,7 +43979,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -43990,7 +43990,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 samples, OpenTK.Graphics.ES31.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -43998,7 +43998,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44006,7 +44006,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44014,7 +44014,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44022,7 +44022,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44030,7 +44030,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44038,169 +44038,169 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44208,7 +44208,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44216,7 +44216,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44226,7 +44226,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44236,7 +44236,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44246,7 +44246,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44256,7 +44256,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44266,7 +44266,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44276,7 +44276,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44288,7 +44288,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44300,7 +44300,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44312,7 +44312,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44326,7 +44326,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44340,7 +44340,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44354,7 +44354,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44368,7 +44368,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44382,7 +44382,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44396,7 +44396,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44410,7 +44410,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44424,7 +44424,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44438,7 +44438,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44452,7 +44452,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44466,7 +44466,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44480,7 +44480,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44492,7 +44492,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44504,7 +44504,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44516,7 +44516,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44530,7 +44530,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44544,7 +44544,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44558,7 +44558,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44572,7 +44572,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44586,7 +44586,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44600,7 +44600,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44614,7 +44614,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44628,7 +44628,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44642,7 +44642,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44656,7 +44656,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44670,7 +44670,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44684,7 +44684,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44692,7 +44692,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44700,7 +44700,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44708,7 +44708,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44716,7 +44716,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44724,7 +44724,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44732,7 +44732,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44740,7 +44740,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44748,7 +44748,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44756,7 +44756,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44764,7 +44764,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44772,7 +44772,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44780,7 +44780,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44794,7 +44794,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44808,7 +44808,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44822,7 +44822,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44836,7 +44836,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44850,7 +44850,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44864,7 +44864,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44880,7 +44880,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44896,7 +44896,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44912,7 +44912,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44928,7 +44928,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44944,7 +44944,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44960,7 +44960,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44976,7 +44976,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -44992,7 +44992,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45008,7 +45008,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45024,7 +45024,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45040,7 +45040,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45056,7 +45056,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45072,7 +45072,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45088,7 +45088,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45104,7 +45104,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45120,7 +45120,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45136,7 +45136,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45152,7 +45152,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45168,7 +45168,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45184,7 +45184,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45200,7 +45200,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45216,7 +45216,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45232,7 +45232,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45248,7 +45248,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.ES31.All pathListMode, Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.ES31.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45257,7 +45257,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45266,7 +45266,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45275,7 +45275,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45283,7 +45283,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45291,7 +45291,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45299,7 +45299,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45308,7 +45308,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45317,7 +45317,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45326,7 +45326,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45334,7 +45334,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45342,7 +45342,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45350,7 +45350,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.ES31.TextureUnit texCoordSet, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45369,7 +45369,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45388,7 +45388,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45407,7 +45407,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.ES31.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45426,7 +45426,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45445,7 +45445,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.ES31.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -45464,33 +45464,33 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.ES31.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.ES31.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45506,7 +45506,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45522,7 +45522,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45538,7 +45538,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45554,7 +45554,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45570,7 +45570,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -45586,12 +45586,12 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45600,7 +45600,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45609,7 +45609,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -45622,7 +45622,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Test whether a capability is enabled @@ -45635,43 +45635,43 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glIsEnablediNV")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45680,7 +45680,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45689,7 +45689,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45697,7 +45697,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45705,195 +45705,195 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.ES31.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45902,7 +45902,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45911,7 +45911,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45920,7 +45920,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45929,7 +45929,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45938,7 +45938,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -45947,7 +45947,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45956,7 +45956,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45965,7 +45965,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45974,7 +45974,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.ES31.All color, OpenTK.Graphics.ES31.All genMode, OpenTK.Graphics.ES31.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45985,7 +45985,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -45998,7 +45998,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46011,7 +46011,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46024,7 +46024,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46037,7 +46037,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46048,7 +46048,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46061,7 +46061,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46074,7 +46074,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46087,7 +46087,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46100,7 +46100,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46111,7 +46111,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46124,7 +46124,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46137,7 +46137,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46150,7 +46150,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46163,7 +46163,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46174,7 +46174,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46187,7 +46187,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46200,7 +46200,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46213,7 +46213,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46226,7 +46226,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46237,7 +46237,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46250,7 +46250,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46263,7 +46263,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46276,7 +46276,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46289,7 +46289,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46300,7 +46300,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46313,7 +46313,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46326,7 +46326,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46339,7 +46339,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46352,7 +46352,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46361,7 +46361,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46372,7 +46372,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46383,7 +46383,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46394,7 +46394,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46405,7 +46405,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46414,7 +46414,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46425,7 +46425,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46436,7 +46436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46447,7 +46447,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46458,18 +46458,18 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES31.All func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES31.All func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.ES31.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.ES31.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46477,7 +46477,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46485,7 +46485,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46493,7 +46493,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46501,7 +46501,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46509,7 +46509,7 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46517,12 +46517,12 @@ namespace OpenTK.Graphics.ES31 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.ES31.All genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.ES31.All genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46535,7 +46535,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46550,7 +46550,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46565,7 +46565,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46580,7 +46580,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46595,7 +46595,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46608,7 +46608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46623,7 +46623,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46638,7 +46638,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46653,7 +46653,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46668,7 +46668,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46679,7 +46679,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46690,7 +46690,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46703,7 +46703,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46716,7 +46716,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46729,7 +46729,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46742,7 +46742,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46755,7 +46755,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46768,7 +46768,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46781,7 +46781,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46794,7 +46794,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathGlyphIndexRange(OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46808,7 +46808,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46824,7 +46824,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46840,7 +46840,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46856,7 +46856,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46872,7 +46872,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46886,7 +46886,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46902,7 +46902,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46918,7 +46918,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46934,7 +46934,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46950,7 +46950,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46965,7 +46965,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -46983,7 +46983,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47001,7 +47001,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47019,7 +47019,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47037,7 +47037,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47052,7 +47052,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47070,7 +47070,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47088,7 +47088,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47106,7 +47106,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47124,7 +47124,7 @@ namespace OpenTK.Graphics.ES31 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.ES31.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47138,7 +47138,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47154,7 +47154,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47170,7 +47170,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47186,7 +47186,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47202,7 +47202,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47216,7 +47216,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47232,7 +47232,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47248,7 +47248,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47264,7 +47264,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47280,7 +47280,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47294,7 +47294,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47310,7 +47310,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47326,7 +47326,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47342,7 +47342,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47358,7 +47358,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47372,7 +47372,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47388,7 +47388,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47404,7 +47404,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47420,7 +47420,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47436,7 +47436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static OpenTK.Graphics.ES31.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.ES31.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47444,7 +47444,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47452,7 +47452,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47460,7 +47460,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47468,7 +47468,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47476,7 +47476,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47484,7 +47484,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47492,7 +47492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47500,7 +47500,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47508,7 +47508,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47516,7 +47516,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47524,7 +47524,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47532,13 +47532,13 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47547,7 +47547,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47556,7 +47556,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES31.All func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47564,7 +47564,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47572,7 +47572,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.ES31.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47581,7 +47581,7 @@ namespace OpenTK.Graphics.ES31 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47592,7 +47592,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47603,7 +47603,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47614,7 +47614,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47625,7 +47625,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47634,7 +47634,7 @@ namespace OpenTK.Graphics.ES31 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47645,7 +47645,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47656,7 +47656,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47667,7 +47667,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47678,7 +47678,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.ES31.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47691,7 +47691,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47706,7 +47706,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47721,7 +47721,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47736,7 +47736,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47751,7 +47751,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47764,7 +47764,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47779,7 +47779,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47794,7 +47794,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47809,7 +47809,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47824,7 +47824,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47837,7 +47837,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47852,7 +47852,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47867,7 +47867,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47882,7 +47882,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47897,7 +47897,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47910,7 +47910,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47925,7 +47925,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47940,7 +47940,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47955,7 +47955,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47970,7 +47970,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47983,7 +47983,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -47998,7 +47998,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48013,7 +48013,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48028,7 +48028,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48043,7 +48043,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48056,7 +48056,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48071,7 +48071,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48086,7 +48086,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48101,7 +48101,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48116,7 +48116,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48126,7 +48126,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48138,7 +48138,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48150,7 +48150,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48162,7 +48162,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48174,7 +48174,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48184,7 +48184,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48196,7 +48196,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48208,7 +48208,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48220,7 +48220,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48232,7 +48232,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.ES31.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48241,7 +48241,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48250,7 +48250,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48259,7 +48259,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.ES31.All texCoordSet, OpenTK.Graphics.ES31.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48272,7 +48272,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48285,7 +48285,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48298,7 +48298,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48311,7 +48311,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -48324,7 +48324,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES31.All face, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_polygon_mode] /// Select a polygon rasterization mode @@ -48336,7 +48336,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "NV_polygon_mode", Version = "", EntryPoint = "glPolygonModeNV")] - public static void PolygonMode(OpenTK.Graphics.ES31.MaterialFace face, OpenTK.Graphics.ES31.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.ES31.MaterialFace face, OpenTK.Graphics.ES31.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48346,7 +48346,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48356,7 +48356,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48366,7 +48366,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48376,7 +48376,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48386,7 +48386,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -48396,7 +48396,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.ES31.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48412,7 +48412,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48428,7 +48428,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48447,7 +48447,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48466,7 +48466,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48485,7 +48485,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48504,7 +48504,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48523,7 +48523,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48542,7 +48542,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48558,7 +48558,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48577,7 +48577,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48596,7 +48596,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48615,7 +48615,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48634,7 +48634,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48653,7 +48653,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48672,7 +48672,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48691,7 +48691,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48710,7 +48710,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48729,7 +48729,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48748,7 +48748,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48767,7 +48767,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48786,7 +48786,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48805,7 +48805,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48824,7 +48824,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48843,7 +48843,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48865,7 +48865,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48887,7 +48887,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48906,7 +48906,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48925,7 +48925,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48944,7 +48944,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48963,7 +48963,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -48982,7 +48982,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49001,7 +49001,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49023,7 +49023,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49042,7 +49042,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49061,7 +49061,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49080,7 +49080,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49105,7 +49105,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49130,7 +49130,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49149,7 +49149,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49168,7 +49168,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49187,7 +49187,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49206,7 +49206,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49225,7 +49225,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49244,7 +49244,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49269,7 +49269,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49288,7 +49288,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49307,7 +49307,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -49326,7 +49326,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49334,7 +49334,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49342,7 +49342,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49351,7 +49351,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49360,7 +49360,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49369,7 +49369,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49378,7 +49378,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49387,7 +49387,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -49396,7 +49396,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_read_buffer] /// Select a color buffer source for pixels @@ -49405,7 +49405,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a color buffer. Accepted values are Back, None, and ColorAttachmenti. /// [AutoGenerated(Category = "NV_read_buffer", Version = "", EntryPoint = "glReadBufferNV")] - public static void ReadBuffer(OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -49426,11 +49426,11 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "NV_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleNV")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49446,7 +49446,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49462,7 +49462,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49478,7 +49478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49494,7 +49494,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49510,7 +49510,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for multiple viewports @@ -49526,7 +49526,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorArrayvNV")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49548,7 +49548,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49570,7 +49570,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49583,7 +49583,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49596,7 +49596,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49609,7 +49609,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49622,7 +49622,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49635,7 +49635,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Define the scissor box for a specific viewport @@ -49648,45 +49648,45 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glScissorIndexedvNV")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(Int32 fence, OpenTK.Graphics.ES31.All condition) { throw new NotImplementedException(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.ES31.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.ES31.All condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.ES31.All condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49699,7 +49699,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49712,7 +49712,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49725,7 +49725,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49738,7 +49738,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49751,7 +49751,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49764,7 +49764,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49779,7 +49779,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49794,7 +49794,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49809,7 +49809,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49824,7 +49824,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49839,7 +49839,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49854,7 +49854,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49869,7 +49869,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49884,7 +49884,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49899,7 +49899,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49914,7 +49914,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49929,7 +49929,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49944,7 +49944,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49959,7 +49959,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49974,7 +49974,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -49989,7 +49989,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50004,7 +50004,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50019,7 +50019,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50034,7 +50034,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50049,7 +50049,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50064,7 +50064,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50079,7 +50079,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50094,7 +50094,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50109,7 +50109,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50124,7 +50124,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50132,7 +50132,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50140,7 +50140,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50153,7 +50153,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50166,7 +50166,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50179,7 +50179,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50192,7 +50192,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50205,7 +50205,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50218,7 +50218,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50233,7 +50233,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50248,7 +50248,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50263,7 +50263,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50278,7 +50278,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50293,7 +50293,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50308,7 +50308,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50323,7 +50323,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50338,7 +50338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50353,7 +50353,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50368,7 +50368,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50383,7 +50383,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50398,7 +50398,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50413,7 +50413,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50428,7 +50428,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50443,7 +50443,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50458,7 +50458,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50473,7 +50473,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50488,7 +50488,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50503,7 +50503,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50518,7 +50518,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50533,7 +50533,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50548,7 +50548,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50563,7 +50563,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50578,7 +50578,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50586,7 +50586,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50594,7 +50594,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50608,7 +50608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50622,7 +50622,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50636,7 +50636,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50650,7 +50650,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50664,7 +50664,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50678,7 +50678,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50694,7 +50694,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50710,7 +50710,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50726,7 +50726,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50742,7 +50742,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50758,7 +50758,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50774,7 +50774,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50790,7 +50790,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50806,7 +50806,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50822,7 +50822,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50838,7 +50838,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50854,7 +50854,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50870,7 +50870,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50886,7 +50886,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50902,7 +50902,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50918,7 +50918,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50934,7 +50934,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50950,7 +50950,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50966,7 +50966,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50982,7 +50982,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -50998,7 +50998,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51014,7 +51014,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51030,7 +51030,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51046,7 +51046,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51062,7 +51062,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51071,7 +51071,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.ES31.All fillMode, Int32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51080,7 +51080,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.ES31.All fillMode, UInt32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51094,7 +51094,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51108,7 +51108,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51122,7 +51122,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51136,7 +51136,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51150,7 +51150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51164,7 +51164,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51180,7 +51180,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51196,7 +51196,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51212,7 +51212,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51228,7 +51228,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51244,7 +51244,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51260,7 +51260,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51276,7 +51276,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51292,7 +51292,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51308,7 +51308,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51324,7 +51324,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51340,7 +51340,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51356,7 +51356,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51372,7 +51372,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51388,7 +51388,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51404,7 +51404,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51420,7 +51420,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51436,7 +51436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51452,7 +51452,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51468,7 +51468,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51484,7 +51484,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51500,7 +51500,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51516,7 +51516,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51532,7 +51532,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51548,7 +51548,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.ES31.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode, OpenTK.Graphics.ES31.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51557,7 +51557,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51566,33 +51566,33 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.ES31.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51601,7 +51601,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51610,7 +51610,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51619,7 +51619,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51628,7 +51628,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51637,7 +51637,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -51646,7 +51646,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.ES31.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51658,7 +51658,7 @@ namespace OpenTK.Graphics.ES31 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51674,7 +51674,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51690,7 +51690,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51706,7 +51706,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51719,7 +51719,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51735,7 +51735,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51751,7 +51751,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51767,7 +51767,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51782,7 +51782,7 @@ namespace OpenTK.Graphics.ES31 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51798,7 +51798,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51814,7 +51814,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51830,7 +51830,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51846,7 +51846,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51862,7 +51862,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51878,7 +51878,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51894,7 +51894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51912,7 +51912,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51928,7 +51928,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51944,7 +51944,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51960,7 +51960,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51979,7 +51979,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -51995,7 +51995,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52011,7 +52011,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52027,7 +52027,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52048,7 +52048,7 @@ namespace OpenTK.Graphics.ES31 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52064,7 +52064,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52080,7 +52080,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52096,7 +52096,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52118,7 +52118,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52134,7 +52134,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52150,7 +52150,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -52166,21 +52166,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52188,7 +52188,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52196,7 +52196,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52204,7 +52204,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52212,7 +52212,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52220,7 +52220,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -52228,7 +52228,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52237,7 +52237,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52246,7 +52246,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52255,7 +52255,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52264,7 +52264,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52273,7 +52273,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52282,7 +52282,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix2x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52291,7 +52291,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52300,7 +52300,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52309,7 +52309,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*6] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52318,7 +52318,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52327,7 +52327,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52336,7 +52336,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix3x4fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52345,7 +52345,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52354,7 +52354,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52363,7 +52363,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*8] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x2fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52372,7 +52372,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52381,7 +52381,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_non_square_matrices] /// @@ -52390,7 +52390,7 @@ namespace OpenTK.Graphics.ES31 /// [length: count*12] [AutoGenerated(Category = "NV_non_square_matrices", Version = "", EntryPoint = "glUniformMatrix4x3fvNV")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -52403,7 +52403,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -52416,7 +52416,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorNV")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52432,7 +52432,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52448,7 +52448,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52464,7 +52464,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52480,7 +52480,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52496,7 +52496,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set multiple viewports @@ -52512,7 +52512,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportArrayvNV")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52534,7 +52534,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52556,7 +52556,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52569,7 +52569,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52582,7 +52582,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52595,7 +52595,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52608,7 +52608,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52621,7 +52621,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_array] /// Set a specified viewport @@ -52634,7 +52634,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvNV")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -52644,7 +52644,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES31.All swizzlex, OpenTK.Graphics.ES31.All swizzley, OpenTK.Graphics.ES31.All swizzlez, OpenTK.Graphics.ES31.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.ES31.All swizzlex, OpenTK.Graphics.ES31.All swizzley, OpenTK.Graphics.ES31.All swizzlez, OpenTK.Graphics.ES31.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -52654,19 +52654,19 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES31.All swizzlex, OpenTK.Graphics.ES31.All swizzley, OpenTK.Graphics.ES31.All swizzlez, OpenTK.Graphics.ES31.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.ES31.All swizzlex, OpenTK.Graphics.ES31.All swizzley, OpenTK.Graphics.ES31.All swizzlez, OpenTK.Graphics.ES31.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52675,7 +52675,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52684,7 +52684,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52693,7 +52693,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52702,7 +52702,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52711,7 +52711,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -52720,7 +52720,7 @@ namespace OpenTK.Graphics.ES31 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -52734,7 +52734,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(Int32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Bind a vertex array object @@ -52744,7 +52744,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -52757,7 +52757,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -52770,7 +52770,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationiOES")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.ES31.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -52786,7 +52786,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Set the RGB blend equation and the alpha blend equation separately @@ -52802,7 +52802,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendEquationSeparateiOES")] [CLSCompliant(false)] - public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.ES31.All modeRGB, OpenTK.Graphics.ES31.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -52816,7 +52816,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic @@ -52830,7 +52830,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFunciOES")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.ES31.All src, OpenTK.Graphics.ES31.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -52852,7 +52852,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Specify pixel arithmetic for RGB and alpha components separately @@ -52874,7 +52874,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glBlendFuncSeparateiOES")] [CLSCompliant(false)] - public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.ES31.All srcRGB, OpenTK.Graphics.ES31.All dstRGB, OpenTK.Graphics.ES31.All srcAlpha, OpenTK.Graphics.ES31.All dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -52894,7 +52894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed] /// Enable and disable writing of frame buffer color components @@ -52914,7 +52914,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed", Version = "", EntryPoint = "glColorMaskiOES")] [CLSCompliant(false)] - public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new NotImplementedException(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -52947,7 +52947,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] - public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -52983,7 +52983,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -53019,7 +53019,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -53055,7 +53055,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image in a compressed format @@ -53090,7 +53090,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexImage3DOES")] public static void CompressedTexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53129,7 +53129,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] - public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53171,7 +53171,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53213,7 +53213,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53255,7 +53255,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage in a compressed format @@ -53296,7 +53296,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCompressedTexSubImage3DOES")] public static void CompressedTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -53348,7 +53348,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(Int32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_copy_image] /// Perform a raw data copy between two images @@ -53400,7 +53400,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_copy_image", Version = "", EntryPoint = "glCopyImageSubDataOES")] [CLSCompliant(false)] - public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.ES31.All srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.ES31.All dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Copy a three-dimensional texture subimage @@ -53433,7 +53433,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glCopyTexSubImage3DOES")] - public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53443,7 +53443,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53453,7 +53453,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53466,7 +53466,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53479,7 +53479,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53492,7 +53492,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53505,7 +53505,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53518,7 +53518,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Delete vertex array objects @@ -53531,7 +53531,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53547,7 +53547,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53563,7 +53563,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53579,7 +53579,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53595,7 +53595,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53611,7 +53611,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -53627,7 +53627,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeArrayfvOES")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -53643,7 +53643,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(Int32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -53659,21 +53659,21 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glDepthRangeIndexedfOES")] [CLSCompliant(false)] - public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRangeIndexed(UInt32 index, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glDisableiOES")] [CLSCompliant(false)] - public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53695,7 +53695,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53720,7 +53720,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53745,7 +53745,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53770,7 +53770,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53794,7 +53794,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53815,7 +53815,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53839,7 +53839,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53863,7 +53863,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53887,7 +53887,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -53910,7 +53910,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsBaseVertexOES")] public static void DrawElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -53935,7 +53935,7 @@ namespace OpenTK.Graphics.ES31 /// [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -53963,7 +53963,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -53991,7 +53991,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54019,7 +54019,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54046,7 +54046,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54070,7 +54070,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54097,7 +54097,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54124,7 +54124,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54151,7 +54151,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -54177,7 +54177,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawElementsInstancedBaseVertexOES")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54206,7 +54206,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54237,7 +54237,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54268,7 +54268,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54299,7 +54299,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54330,7 +54330,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54359,7 +54359,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54390,7 +54390,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54421,7 +54421,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54452,7 +54452,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54483,7 +54483,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.All mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54511,7 +54511,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54541,7 +54541,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54571,7 +54571,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54601,7 +54601,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54631,7 +54631,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54659,7 +54659,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_elements_base_vertex", Version = "", EntryPoint = "glDrawRangeElementsBaseVertexOES")] [CLSCompliant(false)] - public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54689,7 +54689,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54719,7 +54719,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54749,7 +54749,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_elements_base_vertex] /// Render primitives from array data with a per-element offset @@ -54779,19 +54779,19 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.ES31.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.ES31.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")] - public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES31.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES31.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_EGL_image] /// /// [AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")] - public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES31.All target, IntPtr image) { throw new NotImplementedException(); } + public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES31.All target, IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -54802,7 +54802,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Enable or disable server-side GL capabilities @@ -54813,7 +54813,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glEnableiOES")] [CLSCompliant(false)] - public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -54824,7 +54824,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// @@ -54835,7 +54835,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glFramebufferTexture3DOES")] [CLSCompliant(false)] - public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void FramebufferTexture3D(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, OpenTK.Graphics.ES31.All textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -54855,7 +54855,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -54875,7 +54875,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -54894,7 +54894,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_geometry_shader] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -54913,14 +54913,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_geometry_shader", Version = "", EntryPoint = "glFramebufferTextureOES")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54933,7 +54933,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54946,7 +54946,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54959,7 +54959,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54972,7 +54972,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54985,7 +54985,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Generate vertex array object names @@ -54998,14 +54998,14 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// /// /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] - public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -55015,7 +55015,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -55025,7 +55025,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -55035,7 +55035,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// @@ -55044,7 +55044,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")] public static void GetBufferPointer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55052,7 +55052,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55060,7 +55060,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55068,7 +55068,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55076,7 +55076,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55084,7 +55084,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// @@ -55092,7 +55092,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glGetFloati_vOES")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.ES31.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55115,7 +55115,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55140,7 +55140,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55165,7 +55165,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55190,7 +55190,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55215,7 +55215,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55238,7 +55238,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55263,7 +55263,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55288,7 +55288,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55313,7 +55313,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55338,7 +55338,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55361,7 +55361,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55386,7 +55386,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55411,7 +55411,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55436,7 +55436,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55461,7 +55461,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55484,7 +55484,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55509,7 +55509,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55534,7 +55534,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55559,7 +55559,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55584,7 +55584,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All[] binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55607,7 +55607,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55632,7 +55632,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55657,7 +55657,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55682,7 +55682,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55707,7 +55707,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55730,7 +55730,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glGetProgramBinaryOES")] [CLSCompliant(false)] - public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55755,7 +55755,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55780,7 +55780,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55805,7 +55805,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Return a binary representation of a program object's compiled and linked executable source @@ -55830,7 +55830,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.ES31.All* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55838,7 +55838,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55846,7 +55846,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55854,7 +55854,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55862,7 +55862,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55870,7 +55870,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55878,7 +55878,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55886,7 +55886,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55894,7 +55894,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55902,7 +55902,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55911,7 +55911,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55920,7 +55920,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55929,7 +55929,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55937,7 +55937,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55945,7 +55945,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55953,7 +55953,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55962,7 +55962,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55971,7 +55971,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55980,7 +55980,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55988,7 +55988,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -55996,7 +55996,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56004,7 +56004,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glGetTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -56017,7 +56017,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_draw_buffers_indexed|OES_viewport_array] /// Test whether a capability is enabled @@ -56030,7 +56030,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_draw_buffers_indexed|OES_viewport_array", Version = "", EntryPoint = "glIsEnablediOES")] [CLSCompliant(false)] - public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.ES31.All target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -56040,7 +56040,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(Int32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -56050,7 +56050,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// Map a buffer object's data store @@ -56062,7 +56062,7 @@ namespace OpenTK.Graphics.ES31 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")] - public static IntPtr MapBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All access) { throw new BindingsNotRewrittenException(); } /// [requires: OES_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -56071,7 +56071,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "OES_sample_shading", Version = "", EntryPoint = "glMinSampleShadingOES")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_tessellation_shader] /// Specifies the parameters for patch primitives @@ -56083,7 +56083,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "OES_tessellation_shader", Version = "", EntryPoint = "glPatchParameteriOES")] - public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.ES31.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_primitive_bounding_box] /// @@ -56095,7 +56095,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "OES_primitive_bounding_box", Version = "", EntryPoint = "glPrimitiveBoundingBoxOES")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56114,7 +56114,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56135,7 +56135,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56156,7 +56156,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56177,7 +56177,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56198,7 +56198,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56217,7 +56217,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_get_program_binary", Version = "", EntryPoint = "glProgramBinaryOES")] [CLSCompliant(false)] - public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56238,7 +56238,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56259,7 +56259,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56280,7 +56280,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_get_program_binary] /// Load a program object with a program binary @@ -56301,7 +56301,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.ES31.All binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56309,7 +56309,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56317,7 +56317,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56325,7 +56325,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56333,7 +56333,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56341,7 +56341,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56349,7 +56349,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56357,7 +56357,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56365,7 +56365,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56373,7 +56373,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glSamplerParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56389,7 +56389,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56405,7 +56405,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56421,7 +56421,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56437,7 +56437,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56453,7 +56453,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for multiple viewports @@ -56469,7 +56469,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorArrayvOES")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56491,7 +56491,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56513,7 +56513,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56526,7 +56526,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56539,7 +56539,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56552,7 +56552,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56565,7 +56565,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56578,7 +56578,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Define the scissor box for a specific viewport @@ -56591,7 +56591,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glScissorIndexedvOES")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56608,7 +56608,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56625,7 +56625,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56641,7 +56641,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Attach the storage for a buffer object to the active buffer texture @@ -56657,7 +56657,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferOES")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56679,7 +56679,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56701,7 +56701,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56723,7 +56723,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_buffer] /// Bind a range of a buffer's data store to a buffer texture @@ -56745,7 +56745,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_buffer", Version = "", EntryPoint = "glTexBufferRangeOES")] [CLSCompliant(false)] - public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56781,7 +56781,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] - public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56820,7 +56820,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56859,7 +56859,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56898,7 +56898,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture image @@ -56936,7 +56936,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexImage3DOES")] public static void TexImage3D(OpenTK.Graphics.ES31.All target, Int32 level, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56945,7 +56945,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56954,7 +56954,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56963,7 +56963,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56971,7 +56971,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56979,7 +56979,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56987,7 +56987,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -56996,7 +56996,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57005,7 +57005,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57014,7 +57014,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57022,7 +57022,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57030,7 +57030,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_border_clamp] /// @@ -57038,7 +57038,7 @@ namespace OpenTK.Graphics.ES31 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_texture_border_clamp", Version = "", EntryPoint = "glTexParameterIuivOES")] [CLSCompliant(false)] - public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.ES31.TextureTarget target, OpenTK.Graphics.ES31.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_storage_multisample_2d_array] /// Specify storage for a two-dimensional multisample array texture @@ -57065,7 +57065,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "OES_texture_storage_multisample_2d_array", Version = "", EntryPoint = "glTexStorage3DMultisampleOES")] - public static void TexStorage3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.ES31.All target, Int32 samples, OpenTK.Graphics.ES31.All internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57104,7 +57104,7 @@ namespace OpenTK.Graphics.ES31 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] - public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57146,7 +57146,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57188,7 +57188,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57230,7 +57230,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_3D] /// Specify a three-dimensional texture subimage @@ -57271,7 +57271,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "OES_texture_3D", Version = "", EntryPoint = "glTexSubImage3DOES")] public static void TexSubImage3D(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -57302,7 +57302,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(Int32 texture, OpenTK.Graphics.ES31.All target, Int32 origtexture, OpenTK.Graphics.ES31.All internalformat, Int32 minlevel, Int32 numlevels, Int32 minlayer, Int32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_texture_view] /// Initialize a texture as a data alias of another texture's data store @@ -57333,12 +57333,12 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_texture_view", Version = "", EntryPoint = "glTextureViewOES")] [CLSCompliant(false)] - public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new NotImplementedException(); } + public static void TextureView(UInt32 texture, OpenTK.Graphics.ES31.All target, UInt32 origtexture, OpenTK.Graphics.ES31.All internalformat, UInt32 minlevel, UInt32 numlevels, UInt32 minlayer, UInt32 numlayers) { throw new BindingsNotRewrittenException(); } /// [requires: OES_mapbuffer] /// [AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")] - public static bool UnmapBuffer(OpenTK.Graphics.ES31.All target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.ES31.All target) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57354,7 +57354,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57370,7 +57370,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57386,7 +57386,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57402,7 +57402,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57418,7 +57418,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set multiple viewports @@ -57434,7 +57434,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportArrayvOES")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57456,7 +57456,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57478,7 +57478,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57491,7 +57491,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57504,7 +57504,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57517,7 +57517,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57530,7 +57530,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57543,7 +57543,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_viewport_array] /// Set a specified viewport @@ -57556,7 +57556,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OES_viewport_array", Version = "", EntryPoint = "glViewportIndexedfvOES")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } } @@ -57573,7 +57573,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -57586,7 +57586,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -57598,7 +57598,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview_multisampled_render_to_texture] /// @@ -57610,7 +57610,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OVR_multiview_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTextureMultisampleMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultisampleMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 samples, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -57622,7 +57622,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -57634,7 +57634,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -57645,7 +57645,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -57656,7 +57656,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.ES31.FramebufferTarget target, OpenTK.Graphics.ES31.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -57672,49 +57672,49 @@ namespace OpenTK.Graphics.ES31 /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "QCOM_alpha_test", Version = "", EntryPoint = "glAlphaFuncQCOM")] - public static void AlphaFunc(OpenTK.Graphics.ES31.All func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.ES31.All func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")] [CLSCompliant(false)] - public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void DisableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(Int32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")] [CLSCompliant(false)] - public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); } + public static void EnableDriverControl(UInt32 driverControl) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// [AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")] [CLSCompliant(false)] - public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); } + public static void EndTiling(UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] - public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57723,7 +57723,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57732,7 +57732,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57741,7 +57741,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -57749,7 +57749,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")] public static void ExtGetBufferPointer(OpenTK.Graphics.ES31.All target, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57758,7 +57758,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57766,7 +57766,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57775,7 +57775,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out Int32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57784,7 +57784,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] Int32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57793,7 +57793,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57801,7 +57801,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32[] buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57810,7 +57810,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new NotImplementedException(); } + public static void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] out UInt32 buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxBuffers] @@ -57819,7 +57819,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetBuffers([OutAttribute, CountAttribute(Parameter = "maxBuffers")] UInt32* buffers, Int32 maxBuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numBuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57828,7 +57828,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57836,7 +57836,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57845,7 +57845,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57854,7 +57854,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57863,7 +57863,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57871,7 +57871,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57880,7 +57880,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new NotImplementedException(); } + public static void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxFramebuffers] @@ -57889,7 +57889,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetFramebuffers([OutAttribute, CountAttribute(Parameter = "maxFramebuffers")] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numFramebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57898,7 +57898,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57907,7 +57907,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57916,7 +57916,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57925,7 +57925,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57934,7 +57934,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); } + public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] out Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// @@ -57943,7 +57943,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES31.All shadertype, [OutAttribute] out String source, [OutAttribute] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57952,7 +57952,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57960,7 +57960,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57969,7 +57969,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out Int32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57978,7 +57978,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] Int32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57987,7 +57987,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32[] numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -57995,7 +57995,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32[] programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -58004,7 +58004,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new NotImplementedException(); } + public static void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] out UInt32 programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] out Int32 numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxPrograms] @@ -58013,7 +58013,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new NotImplementedException(); } + public static unsafe void ExtGetProgram([OutAttribute, CountAttribute(Parameter = "maxPrograms")] UInt32* programs, Int32 maxPrograms, [OutAttribute, CountAttribute(Count = 1)] Int32* numPrograms) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58022,7 +58022,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58030,7 +58030,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58039,7 +58039,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58048,7 +58048,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58057,7 +58057,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32[] numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58065,7 +58065,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58074,7 +58074,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new NotImplementedException(); } + public static void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] out Int32 numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// [length: maxRenderbuffers] @@ -58083,7 +58083,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new NotImplementedException(); } + public static unsafe void ExtGetRenderbuffers([OutAttribute, CountAttribute(Parameter = "maxRenderbuffers")] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute, CountAttribute(Count = 1)] Int32* numRenderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58092,7 +58092,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58100,7 +58100,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58109,7 +58109,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out Int32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58118,7 +58118,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] Int32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58127,7 +58127,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32[] numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58135,7 +58135,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32[] shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58144,7 +58144,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new NotImplementedException(); } + public static void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] out UInt32 shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] out Int32 numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [length: maxShaders] @@ -58153,7 +58153,7 @@ namespace OpenTK.Graphics.ES31 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new NotImplementedException(); } + public static unsafe void ExtGetShaders([OutAttribute, CountAttribute(Parameter = "maxShaders")] UInt32* shaders, Int32 maxShaders, [OutAttribute, CountAttribute(Count = 1)] Int32* numShaders) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58163,7 +58163,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58173,7 +58173,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58183,7 +58183,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58193,7 +58193,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58203,7 +58203,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58213,7 +58213,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")] [CLSCompliant(false)] - public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES31.All face, Int32 level, OpenTK.Graphics.ES31.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58228,7 +58228,7 @@ namespace OpenTK.Graphics.ES31 /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] - public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); } + public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [OutAttribute] IntPtr texels) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58246,7 +58246,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58264,7 +58264,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58282,7 +58282,7 @@ namespace OpenTK.Graphics.ES31 [CLSCompliant(false)] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] T10[,,] texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58299,7 +58299,7 @@ namespace OpenTK.Graphics.ES31 [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")] public static void ExtGetTexSubImage(OpenTK.Graphics.ES31.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES31.All format, OpenTK.Graphics.ES31.All type, [InAttribute, OutAttribute] ref T10 texels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58307,7 +58307,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58315,7 +58315,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58323,7 +58323,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58331,7 +58331,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58339,7 +58339,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// @@ -58347,30 +58347,30 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get2] /// [AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")] [CLSCompliant(false)] - public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); } + public static bool ExtIsProgramBinary(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_extended_get] /// /// /// [AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")] - public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES31.All target, OpenTK.Graphics.ES31.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_shader_framebuffer_fetch_noncoherent] [AutoGenerated(Category = "QCOM_shader_framebuffer_fetch_noncoherent", Version = "", EntryPoint = "glFramebufferFetchBarrierQCOM")] - public static void FramebufferFetchBarrier() { throw new NotImplementedException(); } + public static void FramebufferFetchBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58380,7 +58380,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out Int32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58390,7 +58390,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(Int32 framebuffer, Int32 numLayers, Int32 focalPointsPerLayer, Int32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] Int32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58400,7 +58400,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new NotImplementedException(); } + public static void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] out UInt32 providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58410,7 +58410,7 @@ namespace OpenTK.Graphics.ES31 /// [length: 1] [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationConfigQCOM")] [CLSCompliant(false)] - public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new NotImplementedException(); } + public static unsafe void FramebufferFoveationConfig(UInt32 framebuffer, UInt32 numLayers, UInt32 focalPointsPerLayer, UInt32 requestedFeatures, [OutAttribute, CountAttribute(Count = 1)] UInt32* providedFeatures) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58423,7 +58423,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(Int32 framebuffer, Int32 layer, Int32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_framebuffer_foveated] /// @@ -58436,7 +58436,7 @@ namespace OpenTK.Graphics.ES31 /// [AutoGenerated(Category = "QCOM_framebuffer_foveated", Version = "", EntryPoint = "glFramebufferFoveationParametersQCOM")] [CLSCompliant(false)] - public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new NotImplementedException(); } + public static void FramebufferFoveationParameters(UInt32 framebuffer, UInt32 layer, UInt32 focalPoint, Single focalX, Single focalY, Single gainX, Single gainY, Single foveaArea) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58444,7 +58444,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58452,7 +58452,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58460,7 +58460,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58468,7 +58468,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new NotImplementedException(); } + public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58476,7 +58476,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58484,7 +58484,7 @@ namespace OpenTK.Graphics.ES31 /// [length: size] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new NotImplementedException(); } + public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* driverControls) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58493,7 +58493,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58502,7 +58502,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58511,7 +58511,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58520,7 +58520,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58529,7 +58529,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_driver_control] /// @@ -58538,7 +58538,7 @@ namespace OpenTK.Graphics.ES31 /// [length: bufSize] [AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")] [CLSCompliant(false)] - public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new NotImplementedException(); } + public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String driverControlString) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -58548,7 +58548,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new BindingsNotRewrittenException(); } /// [requires: QCOM_tiled_rendering] /// @@ -58558,7 +58558,7 @@ namespace OpenTK.Graphics.ES31 /// [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(); } + public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/OpenGL/GL.cs b/src/OpenTK/Graphics/OpenGL/GL.cs index a45bea32..f7df5c78 100644 --- a/src/OpenTK/Graphics/OpenGL/GL.cs +++ b/src/OpenTK/Graphics/OpenGL/GL.cs @@ -5951,13 +5951,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "3DFX_tbuffer", Version = "", EntryPoint = "glTbufferMask3DFX")] [CLSCompliant(false)] - public static void TbufferMask(Int32 mask) { throw new NotImplementedException(); } + public static void TbufferMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: 3DFX_tbuffer] /// [AutoGenerated(Category = "3DFX_tbuffer", Version = "", EntryPoint = "glTbufferMask3DFX")] [CLSCompliant(false)] - public static void TbufferMask(UInt32 mask) { throw new NotImplementedException(); } + public static void TbufferMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } } @@ -5967,27 +5967,27 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void BlendEquationIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// /// [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(); } + public static void BlendEquationIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -5995,7 +5995,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendEquationSeparateIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6003,7 +6003,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendEquationSeparateIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6011,7 +6011,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendFuncIndexed(Int32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6019,7 +6019,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendFuncIndexed(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6029,7 +6029,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: AMD_draw_buffers_blend] /// @@ -6039,7 +6039,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6051,7 +6051,7 @@ namespace OpenTK.Graphics.OpenGL /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackAMD")] - public static void DebugMessageCallback(DebugProcAmd callback, [OutAttribute] IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcAmd callback, [OutAttribute] IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6066,7 +6066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6081,7 +6081,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6096,7 +6096,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -6110,7 +6110,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackAMD")] public static void DebugMessageCallback(DebugProcAmd callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6120,7 +6120,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6130,7 +6130,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6140,7 +6140,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6150,7 +6150,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6160,7 +6160,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// @@ -6170,7 +6170,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageEnable(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Inject an application-supplied message into the debug message queue @@ -6192,7 +6192,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, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, Int32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Inject an application-supplied message into the debug message queue @@ -6214,7 +6214,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, UInt32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.AmdDebugOutput category, OpenTK.Graphics.OpenGL.AmdDebugOutput severity, UInt32 id, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6222,7 +6222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] Int32[] names) { throw new NotImplementedException(); } + public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] Int32[] names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6230,7 +6230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] ref Int32 names) { throw new NotImplementedException(); } + public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] ref Int32 names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6238,7 +6238,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] Int32* names) { throw new NotImplementedException(); } + public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [CountAttribute(Parameter = "num")] Int32* names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6246,7 +6246,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] UInt32[] names) { throw new NotImplementedException(); } + public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] UInt32[] names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6254,7 +6254,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] ref UInt32 names) { throw new NotImplementedException(); } + public static void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] ref UInt32 names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6262,73 +6262,73 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glDeleteNamesAMD")] [CLSCompliant(false)] - public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] UInt32* names) { throw new NotImplementedException(); } + public static unsafe void DeleteNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [CountAttribute(Parameter = "num")] UInt32* names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6337,7 +6337,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new NotImplementedException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6346,7 +6346,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new NotImplementedException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6355,7 +6355,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single* values) { throw new NotImplementedException(); } + public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, Int32 numsamples, Int32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6364,7 +6364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new NotImplementedException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6373,7 +6373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new NotImplementedException(); } + public static void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6382,7 +6382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new NotImplementedException(); } + public static unsafe void FramebufferSamplePositions(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6390,7 +6390,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] Int32[] names) { throw new NotImplementedException(); } + public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] Int32[] names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6398,7 +6398,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] out Int32 names) { throw new NotImplementedException(); } + public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] out Int32 names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6406,7 +6406,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] Int32* names) { throw new NotImplementedException(); } + public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 num, [OutAttribute, CountAttribute(Parameter = "num")] Int32* names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6414,7 +6414,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32[] names) { throw new NotImplementedException(); } + public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32[] names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6422,7 +6422,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] out UInt32 names) { throw new NotImplementedException(); } + public static void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] out UInt32 names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_name_gen_delete] /// @@ -6430,54 +6430,54 @@ namespace OpenTK.Graphics.OpenGL /// [length: num] [AutoGenerated(Category = "AMD_name_gen_delete", Version = "", EntryPoint = "glGenNamesAMD")] [CLSCompliant(false)] - public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32* names) { throw new NotImplementedException(); } + public static unsafe void GenNames(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 num, [OutAttribute, CountAttribute(Parameter = "num")] UInt32* names) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6505,7 +6505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6533,7 +6533,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6561,7 +6561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] Int32* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6589,7 +6589,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput[] categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6617,7 +6617,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.AmdDebugOutput categories, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 severities, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_debug_output] /// Retrieve messages from the debug message log @@ -6645,7 +6645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogAMD")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufsize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.AmdDebugOutput* categories, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* severities, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String message) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6664,7 +6664,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6683,7 +6683,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6702,7 +6702,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6721,7 +6721,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6740,7 +6740,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// Retrieve a named parameter from a framebuffer @@ -6759,7 +6759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions target, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6770,7 +6770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6781,7 +6781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6792,7 +6792,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, Int32 numsamples, Int32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6803,7 +6803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6814,7 +6814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -6825,7 +6825,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glGetNamedFramebufferParameterfvAMD")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.AmdFramebufferSamplePositions pname, UInt32 numsamples, UInt32 pixelindex, Int32 size, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6835,7 +6835,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6845,7 +6845,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6855,7 +6855,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6865,7 +6865,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6875,7 +6875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6885,7 +6885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6894,7 +6894,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6905,7 +6905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6916,7 +6916,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6927,7 +6927,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6938,7 +6938,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6947,7 +6947,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6958,7 +6958,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6969,7 +6969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6980,7 +6980,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -6991,7 +6991,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7001,7 +7001,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7011,7 +7011,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7021,7 +7021,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7031,7 +7031,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7041,7 +7041,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7051,7 +7051,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7061,7 +7061,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7071,7 +7071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7081,7 +7081,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7091,7 +7091,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7099,7 +7099,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7107,7 +7107,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7115,7 +7115,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7123,7 +7123,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7131,7 +7131,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -7139,7 +7139,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7148,7 +7148,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7157,7 +7157,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7166,7 +7166,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7175,21 +7175,21 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool IsName(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, Int32 name) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 name) { throw new NotImplementedException(); } + public static bool IsName(OpenTK.Graphics.OpenGL.AmdNameGenDelete identifier, UInt32 name) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7207,7 +7207,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectAMD")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 primcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 primcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7228,7 +7228,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 primcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7249,7 +7249,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 primcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7270,7 +7270,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 primcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -7290,7 +7290,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectAMD")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 primcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7311,7 +7311,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, IntPtr indirect, Int32 primcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, IntPtr indirect, Int32 primcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7335,7 +7335,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect, Int32 primcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7359,7 +7359,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect, Int32 primcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7383,7 +7383,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 primcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_multi_draw_indirect] /// Render indexed primitives from array data, taking parameters from memory @@ -7406,7 +7406,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AMD_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectAMD")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect type, [InAttribute, OutAttribute] ref T2 indirect, Int32 primcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7415,7 +7415,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new NotImplementedException(); } + public static void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7424,7 +7424,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new NotImplementedException(); } + public static void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7433,7 +7433,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, Single* values) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSamplePositions(Int32 framebuffer, Int32 numsamples, Int32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7442,7 +7442,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new NotImplementedException(); } + public static void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7451,7 +7451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new NotImplementedException(); } + public static void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_framebuffer_sample_positions] /// @@ -7460,7 +7460,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_framebuffer_sample_positions", Version = "", EntryPoint = "glNamedFramebufferSamplePositionsfvAMD")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSamplePositions(UInt32 framebuffer, UInt32 numsamples, UInt32 pixelindex, Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_occlusion_query_event] /// @@ -7469,7 +7469,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, Int32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_occlusion_query_event] /// @@ -7478,7 +7478,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void QueryObjectParameter(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, UInt32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7488,7 +7488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7498,7 +7498,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7508,7 +7508,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7518,7 +7518,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7528,7 +7528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -7538,7 +7538,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7546,7 +7546,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] Single[] val) { throw new NotImplementedException(); } + public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7554,7 +7554,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] ref Single val) { throw new NotImplementedException(); } + public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] ref Single val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7562,7 +7562,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] Single* val) { throw new NotImplementedException(); } + public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, Int32 index, [CountAttribute(Count = 2)] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7570,7 +7570,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] Single[] val) { throw new NotImplementedException(); } + public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7578,7 +7578,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] ref Single val) { throw new NotImplementedException(); } + public static void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] ref Single val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sample_positions] /// @@ -7586,37 +7586,37 @@ namespace OpenTK.Graphics.OpenGL /// [length: 2] [AutoGenerated(Category = "AMD_sample_positions", Version = "", EntryPoint = "glSetMultisamplefvAMD")] [CLSCompliant(false)] - public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] Single* val) { throw new NotImplementedException(); } + public static unsafe void SetMultisample(OpenTK.Graphics.OpenGL.AmdSamplePositions pname, UInt32 index, [CountAttribute(Count = 2)] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_stencil_operation_extended] /// /// [AutoGenerated(Category = "AMD_stencil_operation_extended", Version = "", EntryPoint = "glStencilOpValueAMD")] [CLSCompliant(false)] - public static void StencilOpValue(OpenTK.Graphics.OpenGL.StencilFaceDirection face, Int32 value) { throw new NotImplementedException(); } + public static void StencilOpValue(OpenTK.Graphics.OpenGL.StencilFaceDirection face, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_stencil_operation_extended] /// /// [AutoGenerated(Category = "AMD_stencil_operation_extended", Version = "", EntryPoint = "glStencilOpValueAMD")] [CLSCompliant(false)] - public static void StencilOpValue(OpenTK.Graphics.OpenGL.StencilFaceDirection face, UInt32 value) { throw new NotImplementedException(); } + public static void StencilOpValue(OpenTK.Graphics.OpenGL.StencilFaceDirection face, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_vertex_shader_tessellator] /// [AutoGenerated(Category = "AMD_vertex_shader_tessellator", Version = "", EntryPoint = "glTessellationFactorAMD")] - public static void TessellationFactor(Single factor) { throw new NotImplementedException(); } + public static void TessellationFactor(Single factor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_vertex_shader_tessellator] /// [Obsolete("Use AmdVertexShaderTessellator overload instead")] [AutoGenerated(Category = "AMD_vertex_shader_tessellator", Version = "", EntryPoint = "glTessellationModeAMD")] - public static void TessellationMode(OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator mode) { throw new NotImplementedException(); } + public static void TessellationMode(OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_vertex_shader_tessellator] /// [AutoGenerated(Category = "AMD_vertex_shader_tessellator", Version = "", EntryPoint = "glTessellationModeAMD")] - public static void TessellationMode(OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator mode) { throw new NotImplementedException(); } + public static void TessellationMode(OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator mode) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7628,7 +7628,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7640,7 +7640,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7653,7 +7653,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: AMD_sparse_texture] /// @@ -7666,7 +7666,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: AMD_interleaved_elements] /// @@ -7674,7 +7674,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribParameter(Int32 index, OpenTK.Graphics.OpenGL.AmdInterleavedElements pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_interleaved_elements] /// @@ -7682,7 +7682,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribParameter(UInt32 index, OpenTK.Graphics.OpenGL.AmdInterleavedElements pname, Int32 param) { throw new BindingsNotRewrittenException(); } } @@ -7696,7 +7696,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(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Bind a vertex array object @@ -7706,68 +7706,68 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayAPPLE")] [CLSCompliant(false)] - public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_flush_buffer_range] /// /// /// [AutoGenerated(Category = "APPLE_flush_buffer_range", Version = "", EntryPoint = "glBufferParameteriAPPLE")] - public static void BufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterApple pname, Int32 param) { throw new NotImplementedException(); } + public static void BufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterApple pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glDeleteFencesAPPLE")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7777,7 +7777,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7787,7 +7787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7800,7 +7800,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7813,7 +7813,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7826,7 +7826,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7839,7 +7839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7852,7 +7852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Delete vertex array objects @@ -7865,21 +7865,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysAPPLE")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DisableVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [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(); } + public static void DisableVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7887,14 +7887,14 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawElementArrayAPPLE")] - public static void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// /// /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glDrawElementArrayAPPLE")] - public static void DrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7905,7 +7905,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7916,7 +7916,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [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(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7926,7 +7926,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7936,13 +7936,13 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// /// [length: COMPSIZE(type)] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glElementPointerAPPLE")] - public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [CountAttribute(Computed = "type")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [CountAttribute(Computed = "type")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7951,7 +7951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7960,7 +7960,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7969,7 +7969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -7977,39 +7977,39 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glElementPointerAPPLE")] public static void ElementPointer(OpenTK.Graphics.OpenGL.AppleElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void EnableVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [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(); } + public static void EnableVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glFinishFenceAPPLE")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glFinishFenceAPPLE")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glFinishObjectAPPLE")] - public static void FinishObject(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name) { throw new NotImplementedException(); } + public static void FinishObject(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_flush_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -8024,7 +8024,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "APPLE_flush_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeAPPLE")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_flush_buffer_range] /// Indicate modifications to a range of a mapped buffer @@ -8039,13 +8039,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "APPLE_flush_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeAPPLE")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// /// [length: length] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeAPPLE")] - public static void FlushVertexArrayRange(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void FlushVertexArrayRange(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -8054,7 +8054,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -8063,7 +8063,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -8072,7 +8072,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -8080,61 +8080,61 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeAPPLE")] public static void FlushVertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [length: n] [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glGenFencesAPPLE")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8147,7 +8147,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8160,7 +8160,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8173,7 +8173,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8186,7 +8186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8199,7 +8199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Generate vertex array object names @@ -8212,7 +8212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysAPPLE")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8221,7 +8221,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8230,7 +8230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8239,7 +8239,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8248,7 +8248,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8257,7 +8257,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8266,14 +8266,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// /// /// [length: 1] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glGetTexParameterPointervAPPLE")] - public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8283,7 +8283,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8293,7 +8293,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8303,7 +8303,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8312,19 +8312,19 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glGetTexParameterPointervAPPLE")] public static void GetTexParameterPointer(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glIsFenceAPPLE")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glIsFenceAPPLE")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -8334,7 +8334,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(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_object] /// Determine if a name corresponds to a vertex array object @@ -8344,21 +8344,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayAPPLE")] [CLSCompliant(false)] - public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool IsVertexAttribEnabled(Int32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// /// [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(); } + public static bool IsVertexAttribEnabled(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8370,7 +8370,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] Double[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8382,7 +8382,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] ref Double points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8394,7 +8394,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] Double* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib1(Int32 index, Int32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8406,7 +8406,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] Double[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8418,7 +8418,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] ref Double points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8430,7 +8430,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] Double* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib1(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8442,7 +8442,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] Single[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8454,7 +8454,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] ref Single points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8466,7 +8466,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] Single* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib1(Int32 index, Int32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8478,7 +8478,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] Single[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8490,7 +8490,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] ref Single points) { throw new NotImplementedException(); } + public static void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8502,7 +8502,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,stride,order)] [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, [CountAttribute(Computed = "size,stride,order")] Single* points) { throw new NotImplementedException(); } + public static unsafe void MapVertexAttrib1(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "size,stride,order")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8518,7 +8518,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8534,7 +8534,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Double points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(Int32 index, Int32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8550,7 +8550,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8566,7 +8566,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8582,7 +8582,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Double points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8598,7 +8598,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8614,7 +8614,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8630,7 +8630,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Single points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(Int32 index, Int32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8646,7 +8646,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8662,7 +8662,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single[] points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8678,7 +8678,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Single points) { throw new NotImplementedException(); } + public static void MapVertexAttrib2(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_program_evaluators] /// @@ -8694,7 +8694,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,ustride,uorder,vstride,vorder)] [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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "size,ustride,uorder,vstride,vorder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8704,7 +8704,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8714,7 +8714,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8724,7 +8724,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8733,7 +8733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8742,7 +8742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8751,7 +8751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8763,7 +8763,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8775,7 +8775,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8787,7 +8787,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8799,7 +8799,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8811,7 +8811,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8823,7 +8823,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8834,7 +8834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8845,7 +8845,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8856,7 +8856,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8867,7 +8867,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32[] first, [CountAttribute(Parameter = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8878,7 +8878,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] ref Int32 first, [CountAttribute(Parameter = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_element_array] /// @@ -8889,7 +8889,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "APPLE_element_array", Version = "", EntryPoint = "glMultiDrawRangeElementArrayAPPLE")] [CLSCompliant(false)] - public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, [CountAttribute(Parameter = "primcount")] Int32* first, [CountAttribute(Parameter = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8897,7 +8897,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectPurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8905,7 +8905,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectPurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8913,7 +8913,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectUnpurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, Int32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_object_purgeable] /// @@ -8921,52 +8921,52 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static OpenTK.Graphics.OpenGL.AppleObjectPurgeable ObjectUnpurgeable(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glSetFenceAPPLE")] [CLSCompliant(false)] - public static void SetFence(Int32 fence) { throw new NotImplementedException(); } + public static void SetFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glSetFenceAPPLE")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestFenceAPPLE")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestFenceAPPLE")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_fence] /// /// [AutoGenerated(Category = "APPLE_fence", Version = "", EntryPoint = "glTestObjectAPPLE")] [CLSCompliant(false)] - public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, UInt32 name) { throw new NotImplementedException(); } + public static bool TestObject(OpenTK.Graphics.OpenGL.AppleFence @object, UInt32 name) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// /// /// [length: length] [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glTextureRangeAPPLE")] - public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8976,7 +8976,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8986,7 +8986,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -8996,7 +8996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_texture_range] /// @@ -9005,19 +9005,19 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_texture_range", Version = "", EntryPoint = "glTextureRangeAPPLE")] public static void TextureRange(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// /// [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayParameteriAPPLE")] - public static void VertexArrayParameter(OpenTK.Graphics.OpenGL.AppleVertexArrayRange pname, Int32 param) { throw new NotImplementedException(); } + public static void VertexArrayParameter(OpenTK.Graphics.OpenGL.AppleVertexArrayRange pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// /// [length: length] [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeAPPLE")] - public static void VertexArrayRange(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexArrayRange(Int32 length, [OutAttribute, CountAttribute(Parameter = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -9026,7 +9026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -9035,7 +9035,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -9044,7 +9044,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: APPLE_vertex_array_range] /// @@ -9052,7 +9052,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "APPLE_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeAPPLE")] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -9065,21 +9065,21 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glActiveTextureARB")] - public static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void AttachObject(Int32 containerObj, Int32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glAttachObjectARB")] [CLSCompliant(false)] - public static void AttachObject(UInt32 containerObj, UInt32 obj) { throw new NotImplementedException(); } + public static void AttachObject(UInt32 containerObj, UInt32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delimit the boundaries of a query object @@ -9092,7 +9092,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(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delimit the boundaries of a query object @@ -9105,7 +9105,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glBeginQueryARB")] [CLSCompliant(false)] - public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Associates a generic vertex attribute index with a named attribute variable @@ -9121,7 +9121,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(); } + public static void BindAttribLocation(Int32 programObj, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Associates a generic vertex attribute index with a named attribute variable @@ -9137,7 +9137,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glBindAttribLocationARB")] [CLSCompliant(false)] - public static void BindAttribLocation(UInt32 programObj, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindAttribLocation(UInt32 programObj, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Bind a named buffer object @@ -9150,7 +9150,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(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Bind a named buffer object @@ -9163,21 +9163,21 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 program) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 program) { throw new NotImplementedException(); } + public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9191,7 +9191,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9204,7 +9204,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(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9218,7 +9218,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "ARB_draw_buffers_blend", Version = "", EntryPoint = "glBlendEquationiARB")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9231,7 +9231,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -9247,7 +9247,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(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -9263,7 +9263,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -9279,7 +9279,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(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -9295,7 +9295,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9317,7 +9317,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9339,7 +9339,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9357,7 +9357,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] - public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9378,7 +9378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9399,7 +9399,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9420,7 +9420,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9440,7 +9440,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9458,7 +9458,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] - public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9479,7 +9479,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9500,7 +9500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9521,7 +9521,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Creates and initializes a buffer object's data store @@ -9541,7 +9541,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferDataARB")] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageArb usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -9549,7 +9549,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glBufferPageCommitmentARB")] - public static void BufferPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseBuffer target, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void BufferPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseBuffer target, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -9557,7 +9557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glBufferPageCommitmentARB")] - public static void BufferPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseBuffer target, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void BufferPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseBuffer target, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9575,7 +9575,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] - public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9596,7 +9596,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9617,7 +9617,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9638,7 +9638,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9658,7 +9658,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9676,7 +9676,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] - public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9697,7 +9697,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9718,7 +9718,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9739,7 +9739,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Updates a subset of a buffer object's data store @@ -9759,7 +9759,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glBufferSubDataARB")] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_color_buffer_float] /// Specify whether data read via glReadPixels should be clamped @@ -9771,7 +9771,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether to apply color clamping. clamp must be True or False. /// [AutoGenerated(Category = "ARB_color_buffer_float", Version = "", EntryPoint = "glClampColorARB")] - public static void ClampColor(OpenTK.Graphics.OpenGL.ArbColorBufferFloat target, OpenTK.Graphics.OpenGL.ArbColorBufferFloat clamp) { throw new NotImplementedException(); } + public static void ClampColor(OpenTK.Graphics.OpenGL.ArbColorBufferFloat target, OpenTK.Graphics.OpenGL.ArbColorBufferFloat clamp) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Select active texture unit @@ -9780,7 +9780,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of Texture, where i ranges from 0 to the value of MaxTextureCoords - 1, which is an implementation-dependent value. The initial value is Texture0. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glClientActiveTextureARB")] - public static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new NotImplementedException(); } + public static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Compiles a shader object @@ -9790,7 +9790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCompileShaderARB")] [CLSCompliant(false)] - public static void CompileShader(Int32 shaderObj) { throw new NotImplementedException(); } + public static void CompileShader(Int32 shaderObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Compiles a shader object @@ -9800,7 +9800,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCompileShaderARB")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shaderObj) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shaderObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9809,7 +9809,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9818,7 +9818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9827,7 +9827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9836,7 +9836,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9845,7 +9845,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -9854,7 +9854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9881,7 +9881,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9911,7 +9911,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9941,7 +9941,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -9971,7 +9971,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture image in a compressed format @@ -10000,7 +10000,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage1DARB")] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10030,7 +10030,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10063,7 +10063,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10096,7 +10096,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10129,7 +10129,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture image in a compressed format @@ -10161,7 +10161,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage2DARB")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10194,7 +10194,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10230,7 +10230,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10266,7 +10266,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10302,7 +10302,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture image in a compressed format @@ -10337,7 +10337,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexImage3DARB")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10364,7 +10364,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage1DARB")] - public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10394,7 +10394,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10424,7 +10424,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10454,7 +10454,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a one-dimensional texture subimage in a compressed format @@ -10483,7 +10483,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage1DARB")] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10516,7 +10516,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage2DARB")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10552,7 +10552,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10588,7 +10588,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10624,7 +10624,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a two-dimensional texture subimage in a compressed format @@ -10659,7 +10659,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage2DARB")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10698,7 +10698,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage3DARB")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10740,7 +10740,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10782,7 +10782,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10824,7 +10824,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Specify a three-dimensional texture subimage in a compressed format @@ -10865,16 +10865,16 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glCompressedTexSubImage3DARB")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCreateProgramObjectARB")] - public static Int32 CreateProgramObject() { throw new NotImplementedException(); } + public static Int32 CreateProgramObject() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glCreateShaderObjectARB")] - public static Int32 CreateShaderObject(OpenTK.Graphics.OpenGL.ArbShaderObjects shaderType) { throw new NotImplementedException(); } + public static Int32 CreateShaderObject(OpenTK.Graphics.OpenGL.ArbShaderObjects shaderType) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10882,7 +10882,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10890,7 +10890,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10898,7 +10898,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10906,7 +10906,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10914,7 +10914,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -10922,12 +10922,12 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixARB")] - public static void CurrentPaletteMatrix(Int32 index) { throw new NotImplementedException(); } + public static void CurrentPaletteMatrix(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10939,7 +10939,7 @@ namespace OpenTK.Graphics.OpenGL /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] - public static void DebugMessageCallback(DebugProcArb callback, [CountAttribute(Computed = "callback")] IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcArb callback, [CountAttribute(Computed = "callback")] IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10954,7 +10954,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10969,7 +10969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10984,7 +10984,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -10998,7 +10998,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11023,7 +11023,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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11048,7 +11048,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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11073,7 +11073,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11098,7 +11098,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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11123,7 +11123,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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -11148,7 +11148,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -11173,7 +11173,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, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, Int32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -11198,7 +11198,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, UInt32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.ArbDebugOutput source, OpenTK.Graphics.OpenGL.ArbDebugOutput type, UInt32 id, OpenTK.Graphics.OpenGL.ArbDebugOutput severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11208,7 +11208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11218,7 +11218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11231,7 +11231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11244,7 +11244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11257,7 +11257,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11270,7 +11270,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11283,7 +11283,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Delete named buffer objects @@ -11296,25 +11296,25 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glDeleteBuffersARB")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// /// [length: namelen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glDeleteNamedStringARB")] - public static void DeleteNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new NotImplementedException(); } + public static void DeleteNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDeleteObjectARB")] [CLSCompliant(false)] - public static void DeleteObject(Int32 obj) { throw new NotImplementedException(); } + public static void DeleteObject(Int32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDeleteObjectARB")] [CLSCompliant(false)] - public static void DeleteObject(UInt32 obj) { throw new NotImplementedException(); } + public static void DeleteObject(UInt32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11324,7 +11324,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram([CountAttribute(Parameter = "n")] Int32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram([CountAttribute(Parameter = "n")] Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11334,7 +11334,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram([CountAttribute(Parameter = "n")] UInt32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram([CountAttribute(Parameter = "n")] UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11345,7 +11345,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11356,7 +11356,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11367,7 +11367,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11378,7 +11378,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11389,7 +11389,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Deletes a program object @@ -11400,7 +11400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glDeleteProgramsARB")] [CLSCompliant(false)] - public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11410,7 +11410,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11420,7 +11420,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11433,7 +11433,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11446,7 +11446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11459,7 +11459,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11472,7 +11472,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11485,7 +11485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Delete named query objects @@ -11498,33 +11498,33 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glDeleteQueriesARB")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DetachObject(Int32 containerObj, Int32 attachedObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glDetachObjectARB")] [CLSCompliant(false)] - public static void DetachObject(UInt32 containerObj, UInt32 attachedObj) { throw new NotImplementedException(); } + public static void DetachObject(UInt32 containerObj, UInt32 attachedObj) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glDisableVertexAttribArrayARB")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_compute_variable_group_size] /// @@ -11535,7 +11535,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_compute_variable_group_size] /// @@ -11546,7 +11546,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a range of elements @@ -11565,7 +11565,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedARB")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a range of elements @@ -11583,7 +11583,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedARB")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -11596,7 +11596,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.ArbDrawBuffers[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.ArbDrawBuffers[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -11609,7 +11609,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.ArbDrawBuffers bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.ArbDrawBuffers bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -11622,7 +11622,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_draw_buffers", Version = "", EntryPoint = "glDrawBuffersARB")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.ArbDrawBuffers* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.ArbDrawBuffers* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11644,7 +11644,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11669,7 +11669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11694,7 +11694,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11719,7 +11719,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11743,7 +11743,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11764,7 +11764,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11788,7 +11788,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11812,7 +11812,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11836,7 +11836,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -11859,7 +11859,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Enable or disable a generic vertex attribute array @@ -11869,7 +11869,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(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Enable or disable a generic vertex attribute array @@ -11879,16 +11879,16 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glEnableVertexAttribArrayARB")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glEndQueryARB")] - public static void EndQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glEvaluateDepthValuesARB")] - public static void EvaluateDepthValues() { throw new NotImplementedException(); } + public static void EvaluateDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11897,7 +11897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11906,7 +11906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11915,7 +11915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11924,7 +11924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11933,7 +11933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -11942,7 +11942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.ArbSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -11961,7 +11961,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(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -11980,7 +11980,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, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// @@ -11990,7 +11990,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// @@ -12000,7 +12000,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, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a single layer of a texture to a framebuffer @@ -12022,7 +12022,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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a single layer of a texture to a framebuffer @@ -12044,14 +12044,14 @@ 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, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12064,7 +12064,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12077,7 +12077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12090,7 +12090,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12103,7 +12103,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12116,7 +12116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Generate buffer object names @@ -12129,61 +12129,61 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGenBuffersARB")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int32 GenProgram() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// [length: n] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGenProgramsARB")] [CLSCompliant(false)] - public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12196,7 +12196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12209,7 +12209,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12222,7 +12222,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12235,7 +12235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12248,7 +12248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Generate query object names @@ -12261,7 +12261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGenQueriesARB")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12289,7 +12289,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12317,7 +12317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12345,7 +12345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbVertexShader type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns information about an active attribute variable for the specified program object @@ -12373,7 +12373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetActiveAttribARB")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12401,7 +12401,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12429,7 +12429,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 programObj, Int32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12457,7 +12457,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ArbShaderObjects type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns information about an active uniform variable for the specified program object @@ -12485,7 +12485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetActiveUniformARB")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12494,7 +12494,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] obj) { throw new NotImplementedException(); } + public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12503,7 +12503,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 obj) { throw new NotImplementedException(); } + public static void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12512,7 +12512,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* obj) { throw new NotImplementedException(); } + public static unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12521,7 +12521,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] obj) { throw new NotImplementedException(); } + public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12530,7 +12530,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 obj) { throw new NotImplementedException(); } + public static void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -12539,7 +12539,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxCount] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetAttachedObjectsARB")] [CLSCompliant(false)] - public static unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* obj) { throw new NotImplementedException(); } + public static unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* obj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns the location of an attribute variable @@ -12552,7 +12552,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(); } + public static Int32 GetAttribLocation(Int32 programObj, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_shader] /// Returns the location of an attribute variable @@ -12565,7 +12565,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_shader", Version = "", EntryPoint = "glGetAttribLocationARB")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 programObj, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 programObj, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12582,7 +12582,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12599,7 +12599,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12616,7 +12616,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferTargetArb overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12632,7 +12632,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12648,7 +12648,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Return parameters of a buffer object @@ -12664,7 +12664,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12672,7 +12672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [Obsolete("Use BufferTargetArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] - public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12683,7 +12683,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12694,7 +12694,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12705,7 +12705,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12715,14 +12715,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] - public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12732,7 +12732,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12742,7 +12742,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12752,7 +12752,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// @@ -12761,7 +12761,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferPointervARB")] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12779,7 +12779,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12800,7 +12800,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12821,7 +12821,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12842,7 +12842,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12862,7 +12862,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12880,7 +12880,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12901,7 +12901,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12922,7 +12922,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12943,7 +12943,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Returns a subset of a buffer object's data store @@ -12963,7 +12963,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glGetBufferSubDataARB")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -12978,7 +12978,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the compressed texture image. /// [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glGetCompressedTexImageARB")] - public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -12996,7 +12996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -13014,7 +13014,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -13032,7 +13032,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_compression] /// Return a compressed texture image @@ -13049,7 +13049,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_texture_compression", Version = "", EntryPoint = "glGetCompressedTexImageARB")] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] ref T2 img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13080,7 +13080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13111,7 +13111,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13142,7 +13142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13173,7 +13173,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13204,7 +13204,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.ArbDebugOutput severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -13235,16 +13235,16 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.ArbDebugOutput* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusARB")] - public static OpenTK.Graphics.OpenGL.ArbRobustness GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.ArbRobustness GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetHandleARB")] - public static Int32 GetHandle(OpenTK.Graphics.OpenGL.ArbShaderObjects pname) { throw new NotImplementedException(); } + public static Int32 GetHandle(OpenTK.Graphics.OpenGL.ArbShaderObjects pname) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -13254,7 +13254,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -13264,7 +13264,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ArbBindlessTexture format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13273,7 +13273,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxLength] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] [CLSCompliant(false)] - public static void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new NotImplementedException(); } + public static void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13282,7 +13282,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxLength] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] [CLSCompliant(false)] - public static unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetInfoLog(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13291,7 +13291,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxLength] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] [CLSCompliant(false)] - public static void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new NotImplementedException(); } + public static void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -13300,7 +13300,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: maxLength] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetInfoLogARB")] [CLSCompliant(false)] - public static unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetInfoLog(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13310,7 +13310,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13320,7 +13320,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] [CLSCompliant(false)] - public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new NotImplementedException(); } + public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13329,7 +13329,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13338,7 +13338,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -13347,7 +13347,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13356,7 +13356,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new NotImplementedException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13368,7 +13368,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T4[] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13380,7 +13380,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T4[,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13392,7 +13392,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T4[,,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13403,7 +13403,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] public static void GetnColorTable(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13411,7 +13411,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new NotImplementedException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13422,7 +13422,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13433,7 +13433,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13444,7 +13444,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13454,7 +13454,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13463,7 +13463,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new NotImplementedException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13475,7 +13475,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T4[] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13487,7 +13487,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T4[,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13499,7 +13499,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T4[,,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13510,7 +13510,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13520,7 +13520,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new NotImplementedException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13533,7 +13533,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13546,7 +13546,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13559,7 +13559,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13571,7 +13571,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] 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, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13580,7 +13580,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13589,7 +13589,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] out Double v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13598,7 +13598,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13607,7 +13607,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13616,7 +13616,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] out Single v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13625,7 +13625,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13634,7 +13634,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13643,7 +13643,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13652,7 +13652,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13662,7 +13662,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new NotImplementedException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL.ArbRobustness target, bool reset, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13675,7 +13675,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13688,7 +13688,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13701,7 +13701,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13713,7 +13713,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] 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, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13721,7 +13721,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13729,7 +13729,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13737,7 +13737,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13745,7 +13745,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13753,7 +13753,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13761,7 +13761,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13769,7 +13769,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13777,7 +13777,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13785,7 +13785,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13793,7 +13793,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13801,7 +13801,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13809,7 +13809,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13817,7 +13817,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13825,7 +13825,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13833,33 +13833,33 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.ArbRobustness map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetnPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte[] pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte[] pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Byte pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Byte pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern) { throw new NotImplementedException(); } + public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13871,7 +13871,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: columnBufSize] /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new NotImplementedException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.ArbRobustness target, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13888,7 +13888,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13905,7 +13905,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13922,7 +13922,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13938,7 +13938,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13948,7 +13948,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new NotImplementedException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL.ArbRobustness target, Int32 level, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13961,7 +13961,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13974,7 +13974,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[,] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13987,7 +13987,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T5[,,] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -13999,7 +13999,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] 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, CountAttribute(Parameter = "bufSize")] ref T5 img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14008,7 +14008,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14017,7 +14017,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14026,7 +14026,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14035,7 +14035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14044,7 +14044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14053,7 +14053,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14062,7 +14062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14071,7 +14071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14080,7 +14080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14089,7 +14089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14098,7 +14098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14107,7 +14107,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14116,7 +14116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14125,7 +14125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14134,7 +14134,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14143,7 +14143,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14152,7 +14152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14161,7 +14161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14170,7 +14170,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14179,7 +14179,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14188,7 +14188,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14197,7 +14197,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14206,7 +14206,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14215,7 +14215,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14224,7 +14224,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14233,7 +14233,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -14242,7 +14242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14251,7 +14251,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14260,7 +14260,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -14269,7 +14269,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14277,7 +14277,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14285,7 +14285,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14293,7 +14293,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14301,7 +14301,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14309,7 +14309,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14317,7 +14317,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterfvARB")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14325,7 +14325,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14333,7 +14333,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14341,7 +14341,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(Int32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14349,7 +14349,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14357,7 +14357,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -14365,7 +14365,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetObjectParameterivARB")] [CLSCompliant(false)] - public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectParameter(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14373,7 +14373,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14381,7 +14381,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14389,7 +14389,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14397,7 +14397,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14405,7 +14405,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14413,7 +14413,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14422,7 +14422,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14431,7 +14431,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14440,7 +14440,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14449,7 +14449,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14458,7 +14458,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14467,7 +14467,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14475,7 +14475,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14483,7 +14483,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14491,7 +14491,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14499,7 +14499,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14507,7 +14507,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14515,7 +14515,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14524,7 +14524,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14533,7 +14533,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14542,7 +14542,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14551,7 +14551,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14560,7 +14560,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14569,7 +14569,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Returns a parameter from a program object @@ -14585,7 +14585,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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Returns a parameter from a program object @@ -14601,7 +14601,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14609,7 +14609,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14617,7 +14617,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14625,7 +14625,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14633,7 +14633,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14641,7 +14641,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14649,7 +14649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14658,7 +14658,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14667,7 +14667,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14676,7 +14676,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14685,7 +14685,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14694,7 +14694,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14703,7 +14703,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14711,7 +14711,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14719,7 +14719,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14727,7 +14727,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14735,7 +14735,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14743,7 +14743,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14751,7 +14751,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14760,7 +14760,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14769,7 +14769,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14778,7 +14778,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14787,7 +14787,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14796,7 +14796,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14805,14 +14805,14 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameter(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// /// /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramStringARB")] - public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Computed = "target,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Computed = "target,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14822,7 +14822,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Computed = "target,pname")] T2[] @string) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14832,7 +14832,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Computed = "target,pname")] T2[,] @string) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14842,7 +14842,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Computed = "target,pname")] T2[,,] @string) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -14851,7 +14851,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glGetProgramStringARB")] public static void GetProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Computed = "target,pname")] ref T2 @string) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// @@ -14859,7 +14859,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// @@ -14867,7 +14867,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// @@ -14875,7 +14875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14891,7 +14891,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14907,7 +14907,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14923,7 +14923,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14939,7 +14939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14955,7 +14955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14971,7 +14971,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -14987,7 +14987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -15003,7 +15003,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Return parameters of a query object @@ -15019,7 +15019,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glGetQueryObjectuivARB")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -15038,7 +15038,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] [CLSCompliant(false)] - public static void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -15057,7 +15057,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -15076,7 +15076,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the source code string from a shader object @@ -15095,33 +15095,33 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetShaderSourceARB")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 obj, Int32 maxLength, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "maxLength")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15137,7 +15137,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15153,7 +15153,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15169,7 +15169,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15185,7 +15185,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15201,7 +15201,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15217,7 +15217,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15233,7 +15233,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15249,7 +15249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15265,7 +15265,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15281,7 +15281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15297,7 +15297,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15313,7 +15313,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15329,7 +15329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15345,7 +15345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15361,7 +15361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15377,7 +15377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15393,7 +15393,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the value of a uniform variable @@ -15409,7 +15409,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 programObj, Int32 location, [OutAttribute, CountAttribute(Computed = "programObj,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the location of a uniform variable @@ -15422,7 +15422,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(); } + public static Int32 GetUniformLocation(Int32 programObj, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Returns the location of a uniform variable @@ -15435,7 +15435,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glGetUniformLocationARB")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 programObj, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 programObj, String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15451,7 +15451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15467,7 +15467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -15483,7 +15483,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15499,7 +15499,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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15515,7 +15515,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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15531,7 +15531,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15547,7 +15547,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15563,7 +15563,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15579,7 +15579,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15595,7 +15595,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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15611,7 +15611,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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15627,7 +15627,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15643,7 +15643,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15659,7 +15659,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15675,7 +15675,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15691,7 +15691,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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15707,7 +15707,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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15723,7 +15723,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15739,7 +15739,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15755,7 +15755,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Return a generic vertex attribute parameter @@ -15771,7 +15771,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15779,7 +15779,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15787,7 +15787,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15795,7 +15795,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15803,7 +15803,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15811,7 +15811,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -15819,7 +15819,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15827,7 +15827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15837,7 +15837,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15847,7 +15847,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15857,7 +15857,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15867,7 +15867,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15875,7 +15875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15885,7 +15885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15895,7 +15895,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15905,7 +15905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -15915,7 +15915,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Determine if a name corresponds to a buffer object @@ -15925,7 +15925,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(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Determine if a name corresponds to a buffer object @@ -15935,25 +15935,25 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glIsBufferARB")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// /// [length: namelen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glIsNamedStringARB")] - public static bool IsNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new NotImplementedException(); } + public static bool IsNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Determines if a name corresponds to a program object @@ -15963,7 +15963,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(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// Determines if a name corresponds to a program object @@ -15973,7 +15973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glIsProgramARB")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Determine if a name corresponds to a query object @@ -15983,7 +15983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glIsQueryARB")] [CLSCompliant(false)] - public static bool IsQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_occlusion_query] /// Determine if a name corresponds to a query object @@ -15993,19 +15993,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_occlusion_query", Version = "", EntryPoint = "glIsQueryARB")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Links a program object @@ -16015,7 +16015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glLinkProgramARB")] [CLSCompliant(false)] - public static void LinkProgram(Int32 programObj) { throw new NotImplementedException(); } + public static void LinkProgram(Int32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Links a program object @@ -16025,7 +16025,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glLinkProgramARB")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 programObj) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16035,7 +16035,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16045,7 +16045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16055,7 +16055,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixdARB")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16065,7 +16065,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16075,7 +16075,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Replace the current matrix with the specified row-major ordered matrix @@ -16085,57 +16085,57 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glLoadTransposeMatrixfARB")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.ArbBindlessTexture access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Map a buffer object's data store @@ -16148,7 +16148,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BufferAccessArb overload instead")] [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glMapBufferARB")] - public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexBufferObject access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexBufferObject access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// Map a buffer object's data store @@ -16160,7 +16160,7 @@ namespace OpenTK.Graphics.OpenGL /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glMapBufferARB")] - public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferAccessArb access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferAccessArb access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16168,7 +16168,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerARB")] - public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16179,7 +16179,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16190,7 +16190,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16201,7 +16201,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// @@ -16211,124 +16211,124 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerARB")] public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Byte[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Byte[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Byte indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Byte indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexubvARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Byte* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Byte* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int32[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Int32 indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt32[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref UInt32 indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref UInt32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexuivARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt32* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int16[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int16[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Int16 indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref Int16 indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int16* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] Int16* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt16[] indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt16[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref UInt16 indices) { throw new NotImplementedException(); } + public static void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] ref UInt16 indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_matrix_palette] /// /// [length: size] [AutoGenerated(Category = "ARB_matrix_palette", Version = "", EntryPoint = "glMatrixIndexusvARB")] [CLSCompliant(false)] - public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt16* indices) { throw new NotImplementedException(); } + public static unsafe void MatrixIndex(Int32 size, [CountAttribute(Parameter = "size")] UInt16* indices) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_parallel_shader_compile] /// [AutoGenerated(Category = "ARB_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsARB")] [CLSCompliant(false)] - public static void MaxShaderCompilerThreads(Int32 count) { throw new NotImplementedException(); } + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_parallel_shader_compile] /// [AutoGenerated(Category = "ARB_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsARB")] [CLSCompliant(false)] - public static void MaxShaderCompilerThreads(UInt32 count) { throw new NotImplementedException(); } + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -16337,7 +16337,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "ARB_sample_shading", Version = "", EntryPoint = "glMinSampleShadingARB")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16346,7 +16346,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawArraysIndirectCountARB")] - public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16358,7 +16358,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16370,7 +16370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16382,7 +16382,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16393,7 +16393,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawArraysIndirectCountARB")] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16403,7 +16403,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16416,7 +16416,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16429,7 +16429,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16442,7 +16442,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -16454,7 +16454,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.ArbIndirectParameters type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16466,7 +16466,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1dARB")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16479,7 +16479,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1dvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16491,7 +16491,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1fARB")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16504,7 +16504,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1fvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16516,7 +16516,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1iARB")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16529,7 +16529,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1ivARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16541,7 +16541,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1sARB")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16554,7 +16554,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord1svARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16569,7 +16569,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dARB")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16582,7 +16582,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16595,7 +16595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16608,7 +16608,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2dvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16623,7 +16623,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fARB")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16636,7 +16636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16649,7 +16649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16662,7 +16662,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2fvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16677,7 +16677,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2iARB")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16690,7 +16690,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16703,7 +16703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16716,7 +16716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2ivARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16731,7 +16731,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2sARB")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16744,7 +16744,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16757,7 +16757,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16770,7 +16770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord2svARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16788,7 +16788,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dARB")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16801,7 +16801,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16814,7 +16814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16827,7 +16827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3dvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16845,7 +16845,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fARB")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16858,7 +16858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16871,7 +16871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16884,7 +16884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3fvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16902,7 +16902,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3iARB")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16915,7 +16915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16928,7 +16928,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16941,7 +16941,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3ivARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16959,7 +16959,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3sARB")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16972,7 +16972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16985,7 +16985,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -16998,7 +16998,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord3svARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17019,7 +17019,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dARB")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17032,7 +17032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17045,7 +17045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17058,7 +17058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4dvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17079,7 +17079,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fARB")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17092,7 +17092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17105,7 +17105,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17118,7 +17118,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4fvARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17139,7 +17139,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4iARB")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17152,7 +17152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17165,7 +17165,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17178,7 +17178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4ivARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17199,7 +17199,7 @@ 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. /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4sARB")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17212,7 +17212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17225,7 +17225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multitexture] /// Set the current texture coordinates @@ -17238,7 +17238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multitexture", Version = "", EntryPoint = "glMultiTexCoord4svARB")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17248,7 +17248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17258,7 +17258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17268,7 +17268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixdARB")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17278,7 +17278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17288,7 +17288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_transpose_matrix] /// Multiply the current matrix with the specified row-major ordered matrix @@ -17298,7 +17298,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transpose_matrix", Version = "", EntryPoint = "glMultTransposeMatrixfARB")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -17307,7 +17307,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -17316,7 +17316,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -17325,7 +17325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -17334,7 +17334,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17343,7 +17343,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17352,7 +17352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17361,7 +17361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17370,7 +17370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17379,7 +17379,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -17388,7 +17388,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -17397,7 +17397,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: stringlen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glNamedStringARB")] - public static void NamedString(OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude type, Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] String @string) { throw new NotImplementedException(); } + public static void NamedString(OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude type, Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_point_parameters] /// Specify point parameters @@ -17409,7 +17409,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "ARB_point_parameters", Version = "", EntryPoint = "glPointParameterfARB")] - public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_point_parameters] /// Specify point parameters @@ -17422,7 +17422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_point_parameters", Version = "", EntryPoint = "glPointParameterfvARB")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_point_parameters] /// Specify point parameters @@ -17435,7 +17435,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_point_parameters", Version = "", EntryPoint = "glPointParameterfvARB")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ArbPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_ES3_2_compatibility] /// @@ -17447,7 +17447,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_ES3_2_compatibility", Version = "", EntryPoint = "glPrimitiveBoundingBoxARB")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17458,7 +17458,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17469,7 +17469,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17477,7 +17477,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17485,7 +17485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17493,7 +17493,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17501,7 +17501,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17509,7 +17509,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17517,7 +17517,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17528,7 +17528,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17539,7 +17539,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17547,7 +17547,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17555,7 +17555,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17563,7 +17563,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17571,7 +17571,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17579,7 +17579,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramEnvParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17587,7 +17587,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17598,7 +17598,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17609,7 +17609,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17617,7 +17617,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17625,7 +17625,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17633,7 +17633,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17641,7 +17641,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17649,7 +17649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4dvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17657,7 +17657,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17668,7 +17668,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17679,7 +17679,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17687,7 +17687,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17695,7 +17695,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17703,7 +17703,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17711,7 +17711,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17719,7 +17719,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramLocalParameter4fvARB")] [CLSCompliant(false)] - public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17727,7 +17727,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Specify a parameter for a program object @@ -17743,7 +17743,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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Specify a parameter for a program object @@ -17759,7 +17759,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17767,7 +17767,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: len] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] - public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17778,7 +17778,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17789,7 +17789,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17800,7 +17800,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17810,7 +17810,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17819,7 +17819,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] - public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17831,7 +17831,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17843,7 +17843,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17855,7 +17855,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_fragment_program|ARB_vertex_program] /// @@ -17866,7 +17866,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_fragment_program|ARB_vertex_program", Version = "", EntryPoint = "glProgramStringARB")] public static void ProgramString(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17882,7 +17882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17898,7 +17898,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17917,7 +17917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17936,7 +17936,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17955,7 +17955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17974,7 +17974,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -17993,7 +17993,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18012,7 +18012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18028,7 +18028,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18047,7 +18047,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18066,7 +18066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18085,7 +18085,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18104,7 +18104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18123,7 +18123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18142,7 +18142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18161,7 +18161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18180,7 +18180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18199,7 +18199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18218,7 +18218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18237,7 +18237,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18256,7 +18256,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18275,7 +18275,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18294,7 +18294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18313,7 +18313,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18335,7 +18335,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18357,7 +18357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18376,7 +18376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18395,7 +18395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18414,7 +18414,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18433,7 +18433,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18452,7 +18452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18471,7 +18471,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18493,7 +18493,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18512,7 +18512,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18531,7 +18531,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18550,7 +18550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18575,7 +18575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18600,7 +18600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18619,7 +18619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18638,7 +18638,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18657,7 +18657,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18676,7 +18676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18695,7 +18695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18714,7 +18714,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18739,7 +18739,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18758,7 +18758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18777,7 +18777,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -18796,7 +18796,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18804,7 +18804,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18812,7 +18812,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18821,7 +18821,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18830,7 +18830,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18839,7 +18839,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18848,7 +18848,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18857,7 +18857,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -18866,7 +18866,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18879,7 +18879,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.ArbRobustness format, OpenTK.Graphics.OpenGL.ArbRobustness type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18895,7 +18895,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18911,7 +18911,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18927,7 +18927,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18942,7 +18942,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] 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, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18954,7 +18954,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18969,7 +18969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18984,7 +18984,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -18999,7 +18999,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -19013,7 +19013,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_multisample] /// Specify multisample coverage parameters @@ -19025,7 +19025,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "ARB_multisample", Version = "", EntryPoint = "glSampleCoverageARB")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19044,7 +19044,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19063,7 +19063,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19082,7 +19082,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19101,7 +19101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19120,7 +19120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Replaces the source code in a shader object @@ -19139,7 +19139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glShaderSourceARB")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shaderObj, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19149,7 +19149,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19159,7 +19159,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19169,7 +19169,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19179,7 +19179,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19189,7 +19189,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -19199,7 +19199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -19215,7 +19215,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(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -19231,7 +19231,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_texture] /// @@ -19244,7 +19244,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ARB_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentARB")] - public static void TexPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseTexture target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.OpenGL.ArbSparseTexture target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19256,7 +19256,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fARB")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19272,7 +19272,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19288,7 +19288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19304,7 +19304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1fvARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19316,7 +19316,7 @@ namespace OpenTK.Graphics.OpenGL /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64ARB")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19332,7 +19332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19348,7 +19348,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19364,7 +19364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19376,7 +19376,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1iARB")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19392,7 +19392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19408,7 +19408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19424,7 +19424,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform1ivARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19437,7 +19437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64ARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19453,7 +19453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19469,7 +19469,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19485,7 +19485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19500,7 +19500,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fARB")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19516,7 +19516,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19532,7 +19532,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19548,7 +19548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2fvARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19563,7 +19563,7 @@ namespace OpenTK.Graphics.OpenGL /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64ARB")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19579,7 +19579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19595,7 +19595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19611,7 +19611,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19626,7 +19626,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2iARB")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19642,7 +19642,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2ivARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19658,7 +19658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform2ivARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19674,7 +19674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64ARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19690,7 +19690,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19706,7 +19706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19722,7 +19722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19740,7 +19740,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fARB")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19756,7 +19756,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19772,7 +19772,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19788,7 +19788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3fvARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19806,7 +19806,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64ARB")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19822,7 +19822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19838,7 +19838,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19854,7 +19854,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19872,7 +19872,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3iARB")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19888,7 +19888,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19904,7 +19904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -19920,7 +19920,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform3ivARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19939,7 +19939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64ARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19955,7 +19955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19971,7 +19971,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -19987,7 +19987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20008,7 +20008,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fARB")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20024,7 +20024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20040,7 +20040,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20056,7 +20056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4fvARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20077,7 +20077,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64ARB")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20093,7 +20093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20109,7 +20109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20125,7 +20125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20146,7 +20146,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4iARB")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20162,7 +20162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20178,7 +20178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Specify the value of a uniform variable for the current program object @@ -20194,7 +20194,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniform4ivARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20216,7 +20216,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64ARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20232,7 +20232,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20248,7 +20248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -20264,21 +20264,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20286,7 +20286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20294,7 +20294,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20302,7 +20302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20310,7 +20310,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20318,7 +20318,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -20326,7 +20326,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20335,7 +20335,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20344,7 +20344,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20353,7 +20353,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix2fvARB")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20362,7 +20362,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20371,7 +20371,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20380,7 +20380,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix3fvARB")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20389,7 +20389,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20398,7 +20398,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// @@ -20407,24 +20407,24 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUniformMatrix4fvARB")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_buffer_object] /// [AutoGenerated(Category = "ARB_vertex_buffer_object", Version = "", EntryPoint = "glUnmapBufferARB")] - public static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTargetArb target) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUseProgramObjectARB")] [CLSCompliant(false)] - public static void UseProgramObject(Int32 programObj) { throw new NotImplementedException(); } + public static void UseProgramObject(Int32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glUseProgramObjectARB")] [CLSCompliant(false)] - public static void UseProgramObject(UInt32 programObj) { throw new NotImplementedException(); } + public static void UseProgramObject(UInt32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Validates a program object @@ -20434,7 +20434,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glValidateProgramARB")] [CLSCompliant(false)] - public static void ValidateProgram(Int32 programObj) { throw new NotImplementedException(); } + public static void ValidateProgram(Int32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shader_objects] /// Validates a program object @@ -20444,7 +20444,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_shader_objects", Version = "", EntryPoint = "glValidateProgramARB")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 programObj) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 programObj) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20457,7 +20457,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(); } + public static void VertexAttrib1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20470,7 +20470,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dARB")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20483,7 +20483,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20496,7 +20496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20509,7 +20509,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(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20522,7 +20522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fARB")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20535,7 +20535,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20548,7 +20548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20561,7 +20561,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(); } + public static void VertexAttrib1(Int32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20574,7 +20574,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1sARB")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20587,7 +20587,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20600,7 +20600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib1svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20616,7 +20616,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(); } + public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20632,7 +20632,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20645,7 +20645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20658,7 +20658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20671,7 +20671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20684,7 +20684,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20697,7 +20697,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20710,7 +20710,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20726,7 +20726,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(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20742,7 +20742,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20755,7 +20755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20768,7 +20768,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20781,7 +20781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20794,7 +20794,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20807,7 +20807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20820,7 +20820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20836,7 +20836,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(); } + public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20852,7 +20852,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20865,7 +20865,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20878,7 +20878,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20891,7 +20891,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20904,7 +20904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20917,7 +20917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20930,7 +20930,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib2svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20949,7 +20949,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(); } + public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20968,7 +20968,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20981,7 +20981,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -20994,7 +20994,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21007,7 +21007,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21020,7 +21020,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21033,7 +21033,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21046,7 +21046,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21065,7 +21065,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(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21084,7 +21084,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21097,7 +21097,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21110,7 +21110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21123,7 +21123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21136,7 +21136,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21149,7 +21149,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21162,7 +21162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21181,7 +21181,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(); } + public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21200,7 +21200,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21213,7 +21213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21226,7 +21226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21239,7 +21239,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21252,7 +21252,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21265,7 +21265,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21278,7 +21278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib3svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21291,7 +21291,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21304,7 +21304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21317,7 +21317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4bvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21339,7 +21339,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(); } + public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21361,7 +21361,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21374,7 +21374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21387,7 +21387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21400,7 +21400,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21413,7 +21413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21426,7 +21426,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21439,7 +21439,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4dvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21461,7 +21461,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(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21483,7 +21483,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21496,7 +21496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21509,7 +21509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21522,7 +21522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21535,7 +21535,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21548,7 +21548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21561,7 +21561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4fvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21574,7 +21574,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21587,7 +21587,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21600,7 +21600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21613,7 +21613,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21626,7 +21626,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21639,112 +21639,112 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NbvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NsvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -21754,7 +21754,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// @@ -21764,91 +21764,91 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NubvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NuivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4NusvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21870,7 +21870,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(); } + public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21892,7 +21892,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21905,7 +21905,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21918,7 +21918,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21931,7 +21931,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21944,7 +21944,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21957,7 +21957,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21970,7 +21970,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4svARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21983,7 +21983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -21996,7 +21996,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22009,7 +22009,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22022,7 +22022,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22035,7 +22035,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22048,7 +22048,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4ubvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22061,7 +22061,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22074,7 +22074,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22087,7 +22087,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4uivARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22100,7 +22100,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22113,7 +22113,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Specifies the value of a generic vertex attribute @@ -22126,7 +22126,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_program|ARB_vertex_shader", Version = "", EntryPoint = "glVertexAttrib4usvARB")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -22139,7 +22139,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -22152,49 +22152,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribL1(Int32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribL1(Int32 index, Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22219,7 +22219,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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22246,7 +22246,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22273,7 +22273,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22300,7 +22300,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22327,7 +22327,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22352,7 +22352,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22379,7 +22379,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22406,7 +22406,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22433,7 +22433,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_program|ARB_vertex_shader] /// Define an array of generic vertex attribute data @@ -22460,96 +22460,96 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glVertexBlendARB")] - public static void VertexBlend(Int32 count) { throw new NotImplementedException(); } + public static void VertexBlend(Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] SByte[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] SByte[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref SByte weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref SByte weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightbvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] SByte* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] SByte* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Double[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Double[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Double weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Double weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightdvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Double* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Double* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Single[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Single weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightfvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int32[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int32[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Int32 weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Int32 weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightivARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int32* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int32* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22557,7 +22557,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightPointerARB")] - public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22568,7 +22568,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22579,7 +22579,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22590,7 +22590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// @@ -22600,91 +22600,91 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightPointerARB")] public static void WeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ArbVertexBlend type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int16[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int16[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Int16 weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Int16 weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightsvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int16* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Int16* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Byte[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] Byte[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Byte weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref Byte weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightubvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Byte* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] Byte* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt32[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt32[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref UInt32 weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref UInt32 weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightuivARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt32* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt32* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt16[] weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt16[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] [CLSCompliant(false)] - public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref UInt16 weights) { throw new NotImplementedException(); } + public static void Weight(Int32 size, [CountAttribute(Parameter = "size")] ref UInt16 weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_vertex_blend] /// /// [length: size] [AutoGenerated(Category = "ARB_vertex_blend", Version = "", EntryPoint = "glWeightusvARB")] [CLSCompliant(false)] - public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt16* weights) { throw new NotImplementedException(); } + public static unsafe void Weight(Int32 size, [CountAttribute(Parameter = "size")] UInt16* weights) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22696,7 +22696,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dARB")] - public static void WindowPos2(Double x, Double y) { throw new NotImplementedException(); } + public static void WindowPos2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22706,7 +22706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22716,7 +22716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22726,7 +22726,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2dvARB")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22738,7 +22738,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fARB")] - public static void WindowPos2(Single x, Single y) { throw new NotImplementedException(); } + public static void WindowPos2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22748,7 +22748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22758,7 +22758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22768,7 +22768,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2fvARB")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22780,7 +22780,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2iARB")] - public static void WindowPos2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22790,7 +22790,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22800,7 +22800,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22810,7 +22810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2ivARB")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22822,7 +22822,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2sARB")] - public static void WindowPos2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22832,7 +22832,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22842,7 +22842,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22852,7 +22852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos2svARB")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22867,7 +22867,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dARB")] - public static void WindowPos3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void WindowPos3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22877,7 +22877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22887,7 +22887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22897,7 +22897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3dvARB")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22912,7 +22912,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fARB")] - public static void WindowPos3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void WindowPos3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22922,7 +22922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22932,7 +22932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22942,7 +22942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3fvARB")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22957,7 +22957,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3iARB")] - public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22967,7 +22967,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22977,7 +22977,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -22987,7 +22987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3ivARB")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -23002,7 +23002,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3sARB")] - public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -23012,7 +23012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -23022,7 +23022,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -23032,7 +23032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_window_pos", Version = "", EntryPoint = "glWindowPos3svARB")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } } @@ -23047,7 +23047,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23058,7 +23058,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void AlphaFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23072,7 +23072,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23086,7 +23086,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23103,7 +23103,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23120,7 +23120,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23131,7 +23131,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23142,28 +23142,28 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glBeginFragmentShaderATI")] - public static void BeginFragmentShader() { throw new NotImplementedException(); } + public static void BeginFragmentShader() { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glBindFragmentShaderATI")] [CLSCompliant(false)] - public static void BindFragmentShader(Int32 id) { throw new NotImplementedException(); } + public static void BindFragmentShader(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glBindFragmentShaderATI")] [CLSCompliant(false)] - public static void BindFragmentShader(UInt32 id) { throw new NotImplementedException(); } + public static void BindFragmentShader(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glClientActiveVertexStreamATI")] - public static void ClientActiveVertexStream(OpenTK.Graphics.OpenGL.AtiVertexStreams stream) { throw new NotImplementedException(); } + public static void ClientActiveVertexStream(OpenTK.Graphics.OpenGL.AtiVertexStreams stream) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23175,7 +23175,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, Int32 dst, Int32 dstMask, Int32 dstMod, Int32 arg1, Int32 arg1Rep, Int32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23187,7 +23187,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ColorFragmentOp1(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23202,7 +23202,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23217,7 +23217,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23235,7 +23235,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23253,19 +23253,19 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glDeleteFragmentShaderATI")] [CLSCompliant(false)] - public static void DeleteFragmentShader(Int32 id) { throw new NotImplementedException(); } + public static void DeleteFragmentShader(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glDeleteFragmentShaderATI")] [CLSCompliant(false)] - public static void DeleteFragmentShader(UInt32 id) { throw new NotImplementedException(); } + public static void DeleteFragmentShader(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -23278,7 +23278,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.AtiDrawBuffers[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.AtiDrawBuffers[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -23291,7 +23291,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.AtiDrawBuffers bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.AtiDrawBuffers bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_draw_buffers] /// Specifies a list of color buffers to be drawn into @@ -23304,20 +23304,20 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_draw_buffers", Version = "", EntryPoint = "glDrawBuffersATI")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.AtiDrawBuffers* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.AtiDrawBuffers* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawElementArrayATI")] - public static void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count) { throw new NotImplementedException(); } + public static void DrawElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// /// [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glDrawElementArrayATI")] - public static void DrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count) { throw new NotImplementedException(); } + public static void DrawElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23327,7 +23327,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23337,7 +23337,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [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(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23346,7 +23346,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23355,13 +23355,13 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void DrawRangeElementArray(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// /// [length: COMPSIZE(type)] [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glElementPointerATI")] - public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [CountAttribute(Computed = "type")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [CountAttribute(Computed = "type")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23370,7 +23370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23379,7 +23379,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23388,7 +23388,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_element_array] /// @@ -23396,35 +23396,35 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ATI_element_array", Version = "", EntryPoint = "glElementPointerATI")] public static void ElementPointer(OpenTK.Graphics.OpenGL.AtiElementArray type, [InAttribute, OutAttribute, CountAttribute(Computed = "type")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glEndFragmentShaderATI")] - public static void EndFragmentShader() { throw new NotImplementedException(); } + public static void EndFragmentShader() { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void FreeObjectBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glFreeObjectBufferATI")] [CLSCompliant(false)] - public static void FreeObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static void FreeObjectBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glGenFragmentShadersATI")] [CLSCompliant(false)] - public static Int32 GenFragmentShaders(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenFragmentShaders(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glGenFragmentShadersATI")] [CLSCompliant(false)] - public static Int32 GenFragmentShaders(UInt32 range) { throw new NotImplementedException(); } + public static Int32 GenFragmentShaders(UInt32 range) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23432,7 +23432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23440,7 +23440,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23448,7 +23448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23456,7 +23456,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetArrayObject(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23464,7 +23464,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] [CLSCompliant(false)] - public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23472,7 +23472,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] [CLSCompliant(false)] - public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23480,7 +23480,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] [CLSCompliant(false)] - public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23488,7 +23488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferfvATI")] [CLSCompliant(false)] - public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23496,7 +23496,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] [CLSCompliant(false)] - public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23504,7 +23504,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] [CLSCompliant(false)] - public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23512,7 +23512,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] [CLSCompliant(false)] - public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23520,55 +23520,55 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetObjectBufferivATI")] [CLSCompliant(false)] - public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetObjectBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] [CLSCompliant(false)] - public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] [CLSCompliant(false)] - public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single param) { throw new NotImplementedException(); } + public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterfvATI")] [CLSCompliant(false)] - public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] [CLSCompliant(false)] - public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] [CLSCompliant(false)] - public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 param) { throw new NotImplementedException(); } + public static void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glGetTexBumpParameterivATI")] [CLSCompliant(false)] - public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23576,7 +23576,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23584,7 +23584,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] [CLSCompliant(false)] - public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23592,7 +23592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23600,7 +23600,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectfvATI")] [CLSCompliant(false)] - public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23608,7 +23608,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23616,7 +23616,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] [CLSCompliant(false)] - public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23624,7 +23624,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23632,7 +23632,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glGetVariantArrayObjectivATI")] [CLSCompliant(false)] - public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23640,7 +23640,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23648,7 +23648,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23656,7 +23656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23664,7 +23664,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23672,7 +23672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectfvATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23680,7 +23680,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23688,7 +23688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23696,7 +23696,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23704,7 +23704,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribArrayObject(Int32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23712,7 +23712,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23720,7 +23720,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_vertex_attrib_array_object", Version = "", EntryPoint = "glGetVertexAttribArrayObjectivATI")] [CLSCompliant(false)] - public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -23728,38 +23728,38 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribArrayObject(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool IsObjectBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glIsObjectBufferATI")] [CLSCompliant(false)] - public static bool IsObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsObjectBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static IntPtr MapObjectBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_map_object_buffer] /// [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glMapObjectBufferATI")] [CLSCompliant(false)] - public static IntPtr MapObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static IntPtr MapObjectBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// /// [length: size] /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glNewObjectBufferATI")] - public static Int32 NewObjectBuffer(Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) { throw new NotImplementedException(); } + public static Int32 NewObjectBuffer(Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23769,7 +23769,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T1[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23779,7 +23779,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T1[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23789,7 +23789,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T1[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -23798,7 +23798,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glNewObjectBufferATI")] public static Int32 NewObjectBuffer(Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T1 pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23807,7 +23807,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Byte nx, Byte ny, Byte nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23816,49 +23816,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3bvATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23866,28 +23866,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dATI")] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double nx, Double ny, Double nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double nx, Double ny, Double nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Double coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Double coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3dvATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23895,28 +23895,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fATI")] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single nx, Single ny, Single nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single nx, Single ny, Single nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Single coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3fvATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23924,28 +23924,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3iATI")] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3ivATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -23953,28 +23953,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3sATI")] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16[] coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] [CLSCompliant(false)] - public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int16 coords) { throw new NotImplementedException(); } + public static void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glNormalStream3svATI")] [CLSCompliant(false)] - public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void NormalStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23982,7 +23982,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PassTexCoord(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -23990,19 +23990,19 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PassTexCoord(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_pn_triangles] /// /// [AutoGenerated(Category = "ATI_pn_triangles", Version = "", EntryPoint = "glPNTrianglesfATI")] - public static void PNTriangles(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Single param) { throw new NotImplementedException(); } + public static void PNTriangles(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_pn_triangles] /// /// [AutoGenerated(Category = "ATI_pn_triangles", Version = "", EntryPoint = "glPNTrianglesiATI")] - public static void PNTriangles(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Int32 param) { throw new NotImplementedException(); } + public static void PNTriangles(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -24010,7 +24010,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void SampleMap(Int32 dst, Int32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// @@ -24018,49 +24018,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void SampleMap(UInt32 dst, UInt32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] ref Single value) { throw new NotImplementedException(); } + public static void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static unsafe void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void SetFragmentShaderConstant(Int32 dst, [CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] ref Single value) { throw new NotImplementedException(); } + public static void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_fragment_shader] /// /// [length: 4] [AutoGenerated(Category = "ATI_fragment_shader", Version = "", EntryPoint = "glSetFragmentShaderConstantATI")] [CLSCompliant(false)] - public static unsafe void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void SetFragmentShaderConstant(UInt32 dst, [CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_separate_stencil] /// Set front and/or back function and reference value for stencil testing @@ -24079,7 +24079,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(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_separate_stencil] /// Set front and/or back function and reference value for stencil testing @@ -24098,7 +24098,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_separate_stencil] /// Set front and/or back stencil test actions @@ -24116,61 +24116,61 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "ATI_separate_stencil", Version = "", EntryPoint = "glStencilOpSeparateATI")] - public static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFaceDirection face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFaceDirection face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] [CLSCompliant(false)] - public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] [CLSCompliant(false)] - public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] ref Single param) { throw new NotImplementedException(); } + public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] ref Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterfvATI")] [CLSCompliant(false)] - public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] [CLSCompliant(false)] - public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] [CLSCompliant(false)] - public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_envmap_bumpmap] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ATI_envmap_bumpmap", Version = "", EntryPoint = "glTexBumpParameterivATI")] [CLSCompliant(false)] - public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void TexBumpParameter(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UnmapObjectBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_map_object_buffer] /// [AutoGenerated(Category = "ATI_map_object_buffer", Version = "", EntryPoint = "glUnmapObjectBufferATI")] [CLSCompliant(false)] - public static void UnmapObjectBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static void UnmapObjectBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24180,7 +24180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] [CLSCompliant(false)] - public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new NotImplementedException(); } + public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24192,7 +24192,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24204,7 +24204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24216,7 +24216,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24228,7 +24228,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(Int32 buffer, Int32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24238,7 +24238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ATI_vertex_array_object", Version = "", EntryPoint = "glUpdateObjectBufferATI")] [CLSCompliant(false)] - public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new NotImplementedException(); } + public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24250,7 +24250,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24262,7 +24262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24274,7 +24274,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24286,7 +24286,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void UpdateObjectBuffer(UInt32 buffer, UInt32 offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24296,7 +24296,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VariantArrayObject(Int32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, Int32 buffer, Int32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_array_object] /// @@ -24306,7 +24306,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VariantArrayObject(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -24319,7 +24319,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + public static void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -24331,7 +24331,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribArrayObject(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, Int32 buffer, Int32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -24344,7 +24344,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribPointerType overload instead")] [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(); } + public static void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_attrib_array_object] /// @@ -24356,183 +24356,183 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribArrayObject(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexBlendEnvfATI")] - public static void VertexBlendEnv(OpenTK.Graphics.OpenGL.AtiVertexStreams pname, Single param) { throw new NotImplementedException(); } + public static void VertexBlendEnv(OpenTK.Graphics.OpenGL.AtiVertexStreams pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexBlendEnviATI")] - public static void VertexBlendEnv(OpenTK.Graphics.OpenGL.AtiVertexStreams pname, Int32 param) { throw new NotImplementedException(); } + public static void VertexBlendEnv(OpenTK.Graphics.OpenGL.AtiVertexStreams pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1dATI")] - public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x) { throw new NotImplementedException(); } + public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 1] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1dvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1fATI")] - public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x) { throw new NotImplementedException(); } + public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 1] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1fvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1iATI")] - public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x) { throw new NotImplementedException(); } + public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 1] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1ivATI")] [CLSCompliant(false)] - public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1sATI")] - public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x) { throw new NotImplementedException(); } + public static void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 1] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream1svATI")] [CLSCompliant(false)] - public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream1(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 1)] Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dATI")] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Double[] coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Double[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Double coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Double coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2dvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fATI")] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Single[] coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Single coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2fvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2iATI")] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2ivATI")] [CLSCompliant(false)] - public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2sATI")] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int16[] coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] [CLSCompliant(false)] - public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Int16 coords) { throw new NotImplementedException(); } + public static void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 2] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream2svATI")] [CLSCompliant(false)] - public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream2(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 2)] Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24540,28 +24540,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dATI")] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double[] coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Double coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Double coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3dvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24569,28 +24569,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fATI")] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single[] coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Single coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3fvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24598,28 +24598,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3iATI")] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3ivATI")] [CLSCompliant(false)] - public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24627,28 +24627,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3sATI")] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16[] coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] [CLSCompliant(false)] - public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int16 coords) { throw new NotImplementedException(); } + public static void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 3] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream3svATI")] [CLSCompliant(false)] - public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream3(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 3)] Int16* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24657,28 +24657,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dATI")] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Double[] coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Double[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Double coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Double coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4dvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Double* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Double* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24687,28 +24687,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fATI")] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Single[] coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Single coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4fvATI")] [CLSCompliant(false)] - public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Single* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24717,28 +24717,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4iATI")] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4ivATI")] [CLSCompliant(false)] - public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// @@ -24747,28 +24747,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4sATI")] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int16[] coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int16[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] [CLSCompliant(false)] - public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Int16 coords) { throw new NotImplementedException(); } + public static void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] ref Int16 coords) { throw new BindingsNotRewrittenException(); } /// [requires: ATI_vertex_streams] /// /// [length: 4] [AutoGenerated(Category = "ATI_vertex_streams", Version = "", EntryPoint = "glVertexStream4svATI")] [CLSCompliant(false)] - public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int16* coords) { throw new NotImplementedException(); } + public static unsafe void VertexStream4(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, [CountAttribute(Count = 4)] Int16* coords) { throw new BindingsNotRewrittenException(); } } @@ -24776,7 +24776,7 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -24790,7 +24790,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a floating-point value used in the accumulation buffer operation. op determines how value is used. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glAccum")] - public static void Accum(OpenTK.Graphics.OpenGL.AccumOp op, Single value) { throw new NotImplementedException(); } + public static void Accum(OpenTK.Graphics.OpenGL.AccumOp op, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Set the active program object for a program pipeline object @@ -24803,7 +24803,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(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Set the active program object for a program pipeline object @@ -24816,7 +24816,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(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Select active texture unit @@ -24825,7 +24825,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the alpha test function @@ -24837,7 +24837,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glAlphaFunc")] - public static void AlphaFunc(OpenTK.Graphics.OpenGL.AlphaFunction func, Single @ref) { throw new NotImplementedException(); } + public static void AlphaFunc(OpenTK.Graphics.OpenGL.AlphaFunction func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24853,7 +24853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24869,7 +24869,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24885,7 +24885,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24901,7 +24901,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24917,7 +24917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Determine if textures are loaded in texture memory @@ -24933,7 +24933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glAreTexturesResident")] [CLSCompliant(false)] - public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Render a vertex using the specified vertex array element @@ -24942,7 +24942,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an index into the enabled vertex data arrays. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glArrayElement")] - public static void ArrayElement(Int32 i) { throw new NotImplementedException(); } + public static void ArrayElement(Int32 i) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Attaches a shader object to a program object @@ -24955,7 +24955,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(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Attaches a shader object to a program object @@ -24968,7 +24968,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Delimit the vertices of a primitive or a group of like primitives @@ -24978,7 +24978,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBegin")] - public static void Begin(OpenTK.Graphics.OpenGL.BeginMode mode) { throw new NotImplementedException(); } + public static void Begin(OpenTK.Graphics.OpenGL.BeginMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Delimit the vertices of a primitive or a group of like primitives @@ -24987,7 +24987,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the primitive or primitives that will be created from vertices presented between glBegin and the subsequent glEnd. Ten symbolic constants are accepted: Points, Lines, LineStrip, LineLoop, Triangles, TriangleStrip, TriangleFan, Quads, QuadStrip, and Polygon. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBegin")] - public static void Begin(OpenTK.Graphics.OpenGL.PrimitiveType mode) { throw new NotImplementedException(); } + public static void Begin(OpenTK.Graphics.OpenGL.PrimitiveType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start conditional rendering @@ -25000,7 +25000,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(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start conditional rendering @@ -25013,7 +25013,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delimit the boundaries of a query object @@ -25026,7 +25026,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(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delimit the boundaries of a query object @@ -25039,7 +25039,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, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Delimit the boundaries of a query object on an indexed target @@ -25055,7 +25055,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(); } + public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Delimit the boundaries of a query object on an indexed target @@ -25071,7 +25071,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, UInt32 index, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start transform feedback operation @@ -25081,7 +25081,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use TransformFeedbackPrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.BeginFeedbackMode primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.BeginFeedbackMode primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start transform feedback operation @@ -25090,7 +25090,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Associates a generic vertex attribute index with a named attribute variable @@ -25106,7 +25106,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(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Associates a generic vertex attribute index with a named attribute variable @@ -25122,7 +25122,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Bind a named buffer object @@ -25135,7 +25135,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(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Bind a named buffer object @@ -25148,7 +25148,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -25164,7 +25164,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -25180,7 +25180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -25197,7 +25197,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -25214,7 +25214,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25236,7 +25236,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25258,7 +25258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", 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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25280,7 +25280,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25302,7 +25302,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", 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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25325,7 +25325,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25348,7 +25348,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", 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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25371,7 +25371,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -25394,7 +25394,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use BufferRangeTarget overload instead")] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", 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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25413,7 +25413,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, [CountAttribute(Parameter = "count")] Int32[] buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25432,7 +25432,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, [CountAttribute(Parameter = "count")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25451,7 +25451,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25470,7 +25470,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, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25489,7 +25489,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, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -25508,7 +25508,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25529,7 +25529,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25550,7 +25550,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25571,7 +25571,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new NotImplementedException(); } + public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25592,7 +25592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25613,7 +25613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -25634,7 +25634,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new NotImplementedException(); } + public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Bind a user-defined varying out variable to a fragment shader color number @@ -25650,7 +25650,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, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Bind a user-defined varying out variable to a fragment shader color number @@ -25666,7 +25666,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -25685,7 +25685,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(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -25704,7 +25704,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(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a framebuffer to a framebuffer target @@ -25717,7 +25717,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(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a framebuffer to a framebuffer target @@ -25730,7 +25730,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, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Bind a level of a texture to an image unit @@ -25758,7 +25758,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Bind a level of a texture to an image unit @@ -25786,7 +25786,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(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.TextureAccess access, OpenTK.Graphics.OpenGL.SizedInternalFormat format) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25802,7 +25802,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, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new NotImplementedException(); } + public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25818,7 +25818,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, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new NotImplementedException(); } + public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25834,7 +25834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static unsafe void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25850,7 +25850,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new NotImplementedException(); } + public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25866,7 +25866,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -25882,7 +25882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static unsafe void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind a program pipeline to the current context @@ -25892,7 +25892,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(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind a program pipeline to the current context @@ -25902,7 +25902,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(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a renderbuffer to a renderbuffer target @@ -25915,7 +25915,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(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a renderbuffer to a renderbuffer target @@ -25928,7 +25928,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Bind a named sampler to a texturing target @@ -25941,7 +25941,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(); } + public static void BindSampler(Int32 unit, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Bind a named sampler to a texturing target @@ -25954,7 +25954,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -25970,7 +25970,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, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -25986,7 +25986,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, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -26002,7 +26002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static unsafe void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -26018,7 +26018,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -26034,7 +26034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -26050,7 +26050,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static unsafe void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Bind a named texture to a texturing target @@ -26063,7 +26063,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(); } + public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Bind a named texture to a texturing target @@ -26076,7 +26076,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, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26092,7 +26092,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, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new NotImplementedException(); } + public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26108,7 +26108,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, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new NotImplementedException(); } + public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26124,7 +26124,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static unsafe void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26140,7 +26140,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new NotImplementedException(); } + public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26156,7 +26156,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -26172,21 +26172,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static unsafe void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBindTextureUnit")] [CLSCompliant(false)] - public static void BindTextureUnit(Int32 unit, Int32 texture) { throw new NotImplementedException(); } + public static void BindTextureUnit(Int32 unit, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBindTextureUnit")] [CLSCompliant(false)] - public static void BindTextureUnit(UInt32 unit, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTextureUnit(UInt32 unit, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Bind a transform feedback object @@ -26199,7 +26199,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(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Bind a transform feedback object @@ -26212,7 +26212,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, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Bind a vertex array object @@ -26222,7 +26222,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(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Bind a vertex array object @@ -26232,7 +26232,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(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Bind a buffer to a vertex buffer bind point @@ -26251,7 +26251,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(); } + public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Bind a buffer to a vertex buffer bind point @@ -26270,7 +26270,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(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26292,7 +26292,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, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26314,7 +26314,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, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26336,7 +26336,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static unsafe void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new NotImplementedException(); } + public static unsafe void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26358,7 +26358,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26380,7 +26380,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -26402,7 +26402,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new NotImplementedException(); } + public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a bitmap @@ -26430,7 +26430,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, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new NotImplementedException(); } + public static void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a bitmap @@ -26458,7 +26458,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, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new NotImplementedException(); } + public static void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a bitmap @@ -26486,7 +26486,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new NotImplementedException(); } + public static unsafe void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Set the blend color @@ -26504,7 +26504,7 @@ namespace OpenTK.Graphics.OpenGL /// specify the components of BlendColor /// [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26514,7 +26514,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26523,7 +26523,7 @@ namespace OpenTK.Graphics.OpenGL /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26533,7 +26533,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.Version40 mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.Version40 mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26547,7 +26547,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(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26560,7 +26560,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(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26574,7 +26574,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.Version40 mode) { throw new NotImplementedException(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL.Version40 mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26588,7 +26588,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(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26601,7 +26601,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -26615,7 +26615,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendEquationi")] [CLSCompliant(false)] - public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 mode) { throw new NotImplementedException(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -26627,7 +26627,7 @@ namespace OpenTK.Graphics.OpenGL /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -26643,7 +26643,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(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -26659,7 +26659,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -26671,7 +26671,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -26684,7 +26684,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.Version40 dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.Version40 dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26701,7 +26701,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(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26717,7 +26717,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(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc src, OpenTK.Graphics.OpenGL.BlendingFactorDest dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26734,7 +26734,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.Version40 src, OpenTK.Graphics.OpenGL.Version40 dst) { throw new NotImplementedException(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL.Version40 src, OpenTK.Graphics.OpenGL.Version40 dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26751,7 +26751,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(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26767,7 +26767,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.BlendingFactorSrc src, OpenTK.Graphics.OpenGL.BlendingFactorDest dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -26784,7 +26784,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ArbDrawBuffersBlend overload instead")] [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glBlendFunci")] [CLSCompliant(false)] - public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 src, OpenTK.Graphics.OpenGL.Version40 dst) { throw new NotImplementedException(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 src, OpenTK.Graphics.OpenGL.Version40 dst) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26803,7 +26803,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendingFactorSrc overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend sfactorRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dfactorRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend sfactorAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend sfactorRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dfactorRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend sfactorAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26821,7 +26821,7 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26844,7 +26844,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26866,7 +26866,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26889,7 +26889,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.Version40 srcRGB, OpenTK.Graphics.OpenGL.Version40 dstRGB, OpenTK.Graphics.OpenGL.Version40 srcAlpha, OpenTK.Graphics.OpenGL.Version40 dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(Int32 buf, OpenTK.Graphics.OpenGL.Version40 srcRGB, OpenTK.Graphics.OpenGL.Version40 dstRGB, OpenTK.Graphics.OpenGL.Version40 srcAlpha, OpenTK.Graphics.OpenGL.Version40 dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26912,7 +26912,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(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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26934,7 +26934,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -26957,7 +26957,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(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 srcRGB, OpenTK.Graphics.OpenGL.Version40 dstRGB, OpenTK.Graphics.OpenGL.Version40 srcAlpha, OpenTK.Graphics.OpenGL.Version40 dstAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(UInt32 buf, OpenTK.Graphics.OpenGL.Version40 srcRGB, OpenTK.Graphics.OpenGL.Version40 dstRGB, OpenTK.Graphics.OpenGL.Version40 srcAlpha, OpenTK.Graphics.OpenGL.Version40 dstAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -26993,7 +26993,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -27010,7 +27010,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBlitNamedFramebuffer")] [CLSCompliant(false)] - public static void BlitNamedFramebuffer(Int32 readFramebuffer, Int32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitNamedFramebuffer(Int32 readFramebuffer, Int32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -27027,7 +27027,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBlitNamedFramebuffer")] [CLSCompliant(false)] - public static void BlitNamedFramebuffer(UInt32 readFramebuffer, UInt32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitNamedFramebuffer(UInt32 readFramebuffer, UInt32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27045,7 +27045,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27066,7 +27066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27087,7 +27087,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27108,7 +27108,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27128,7 +27128,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27146,7 +27146,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27167,7 +27167,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27188,7 +27188,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27209,7 +27209,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -27229,7 +27229,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27247,7 +27247,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] - public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27268,7 +27268,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27289,7 +27289,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27310,7 +27310,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27330,7 +27330,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27348,7 +27348,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] - public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27369,7 +27369,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27390,7 +27390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27411,7 +27411,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -27431,7 +27431,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] public static void BufferStorage(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27449,7 +27449,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27470,7 +27470,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27491,7 +27491,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27512,7 +27512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27532,7 +27532,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27550,7 +27550,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27571,7 +27571,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27592,7 +27592,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27613,7 +27613,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -27633,7 +27633,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a display list @@ -27643,7 +27643,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(); } + public static void CallList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a display list @@ -27653,7 +27653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallList")] [CLSCompliant(false)] - public static void CallList(UInt32 list) { throw new NotImplementedException(); } + public static void CallList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27668,7 +27668,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of name offsets in the display list. The pointer type is void because the offsets can be bytes, shorts, ints, or floats, depending on the value of type. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallLists")] - public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [CountAttribute(Computed = "n,type")] IntPtr lists) { throw new NotImplementedException(); } + public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [CountAttribute(Computed = "n,type")] IntPtr lists) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27686,7 +27686,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute, CountAttribute(Computed = "n,type")] T2[] lists) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27704,7 +27704,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute, CountAttribute(Computed = "n,type")] T2[,] lists) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27722,7 +27722,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute, CountAttribute(Computed = "n,type")] T2[,,] lists) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Execute a list of display lists @@ -27739,7 +27739,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCallLists")] public static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, [InAttribute, OutAttribute, CountAttribute(Computed = "n,type")] ref T2 lists) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Check the completeness status of a framebuffer @@ -27748,21 +27748,21 @@ namespace OpenTK.Graphics.OpenGL /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify whether data read via glReadPixels should be clamped @@ -27774,7 +27774,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether to apply color clamping. clamp must be True or False. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClampColor")] - public static void ClampColor(OpenTK.Graphics.OpenGL.ClampColorTarget target, OpenTK.Graphics.OpenGL.ClampColorMode clamp) { throw new NotImplementedException(); } + public static void ClampColor(OpenTK.Graphics.OpenGL.ClampColorTarget target, OpenTK.Graphics.OpenGL.ClampColorMode clamp) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -27783,7 +27783,7 @@ namespace OpenTK.Graphics.OpenGL /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.OpenGL.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.OpenGL.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify clear values for the accumulation buffer @@ -27801,7 +27801,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the red, green, blue, and alpha values used when the accumulation buffer is cleared. The initial values are all 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearAccum")] - public static void ClearAccum(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearAccum(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27822,7 +27822,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] - public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27846,7 +27846,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27870,7 +27870,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27894,7 +27894,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -27917,7 +27917,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] 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, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -27936,7 +27936,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ClearBufferCombined overload instead")] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -27954,7 +27954,7 @@ namespace OpenTK.Graphics.OpenGL /// The value to clear a stencil render buffer to. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -27970,7 +27970,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, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -27986,7 +27986,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, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28002,7 +28002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28018,7 +28018,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, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28034,7 +28034,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, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28050,7 +28050,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28077,7 +28077,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28107,7 +28107,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28137,7 +28137,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28167,7 +28167,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28196,7 +28196,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28223,7 +28223,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - 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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28253,7 +28253,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28283,7 +28283,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28313,7 +28313,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -28342,7 +28342,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] 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, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28358,7 +28358,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28374,7 +28374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -28390,7 +28390,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify clear values for the color buffers @@ -28408,7 +28408,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the depth buffer @@ -28417,7 +28417,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearDepth")] - public static void ClearDepth(Double depth) { throw new NotImplementedException(); } + public static void ClearDepth(Double depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Specify the clear value for the depth buffer @@ -28426,7 +28426,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the clear value for the color index buffers @@ -28435,7 +28435,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index used when the color index buffers are cleared. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearIndex")] - public static void ClearIndex(Single c) { throw new NotImplementedException(); } + public static void ClearIndex(Single c) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28445,7 +28445,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28457,7 +28457,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28469,7 +28469,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28481,7 +28481,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28493,7 +28493,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28503,7 +28503,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28515,7 +28515,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28527,7 +28527,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28539,7 +28539,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28551,7 +28551,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28563,7 +28563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28577,7 +28577,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28591,7 +28591,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28605,7 +28605,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28619,7 +28619,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28631,7 +28631,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28645,7 +28645,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28659,7 +28659,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28673,7 +28673,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28687,7 +28687,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28699,7 +28699,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28713,7 +28713,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28727,7 +28727,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28741,7 +28741,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28755,7 +28755,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28767,7 +28767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28781,7 +28781,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28795,7 +28795,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28809,7 +28809,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28823,7 +28823,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28833,7 +28833,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfi")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28843,7 +28843,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfi")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28852,7 +28852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28861,7 +28861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28870,7 +28870,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28879,7 +28879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28888,7 +28888,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28897,7 +28897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28906,7 +28906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28915,7 +28915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28924,7 +28924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28933,7 +28933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28942,7 +28942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28951,7 +28951,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28960,7 +28960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28969,7 +28969,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28978,7 +28978,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the stencil buffer @@ -28987,7 +28987,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29009,7 +29009,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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29033,7 +29033,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29057,7 +29057,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29081,7 +29081,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29105,7 +29105,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29127,7 +29127,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29151,7 +29151,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29175,7 +29175,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29199,7 +29199,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -29223,7 +29223,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29263,7 +29263,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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29305,7 +29305,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29347,7 +29347,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29389,7 +29389,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29431,7 +29431,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29471,7 +29471,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29513,7 +29513,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29555,7 +29555,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29597,7 +29597,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -29639,7 +29639,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Select active texture unit @@ -29648,7 +29648,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of Texture, where i ranges from 0 to the value of MaxTextureCoords - 1, which is an implementation-dependent value. The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glClientActiveTexture")] - public static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new NotImplementedException(); } + public static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29664,7 +29664,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(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29680,7 +29680,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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29697,7 +29697,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(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29714,7 +29714,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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -29731,13 +29731,13 @@ 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, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.WaitSyncStatus ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_clip_control|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_clip_control|VERSION_4_5", Version = "4.5", EntryPoint = "glClipControl")] - public static void ClipControl(OpenTK.Graphics.OpenGL.ClipOrigin origin, OpenTK.Graphics.OpenGL.ClipDepthMode depth) { throw new NotImplementedException(); } + public static void ClipControl(OpenTK.Graphics.OpenGL.ClipOrigin origin, OpenTK.Graphics.OpenGL.ClipDepthMode depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a plane against which all geometry is clipped @@ -29750,7 +29750,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, [CountAttribute(Count = 4)] Double[] equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Double[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a plane against which all geometry is clipped @@ -29763,7 +29763,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, [CountAttribute(Count = 4)] ref Double equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] ref Double equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a plane against which all geometry is clipped @@ -29776,7 +29776,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClipPlane")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Double* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [CountAttribute(Count = 4)] Double* equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29792,7 +29792,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Color3(SByte red, SByte green, SByte blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29802,7 +29802,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29812,7 +29812,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29822,7 +29822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3bv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29837,7 +29837,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3d")] - public static void Color3(Double red, Double green, Double blue) { throw new NotImplementedException(); } + public static void Color3(Double red, Double green, Double blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29847,7 +29847,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29857,7 +29857,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29867,7 +29867,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3dv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29882,7 +29882,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3f")] - public static void Color3(Single red, Single green, Single blue) { throw new NotImplementedException(); } + public static void Color3(Single red, Single green, Single blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29892,7 +29892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29902,7 +29902,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29912,7 +29912,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3fv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29927,7 +29927,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3i")] - public static void Color3(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void Color3(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29937,7 +29937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29947,7 +29947,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29957,7 +29957,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3iv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29972,7 +29972,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3s")] - public static void Color3(Int16 red, Int16 green, Int16 blue) { throw new NotImplementedException(); } + public static void Color3(Int16 red, Int16 green, Int16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29982,7 +29982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -29992,7 +29992,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30002,7 +30002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3sv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30017,7 +30017,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current color. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ub")] - public static void Color3(Byte red, Byte green, Byte blue) { throw new NotImplementedException(); } + public static void Color3(Byte red, Byte green, Byte blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30027,7 +30027,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30037,7 +30037,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30047,7 +30047,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3ubv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30063,7 +30063,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Color3(UInt32 red, UInt32 green, UInt32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30073,7 +30073,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30083,7 +30083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30093,7 +30093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3uiv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30109,7 +30109,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Color3(UInt16 red, UInt16 green, UInt16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30119,7 +30119,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] UInt16[] v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30129,7 +30129,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] [CLSCompliant(false)] - public static void Color3([CountAttribute(Count = 3)] ref UInt16 v) { throw new NotImplementedException(); } + public static void Color3([CountAttribute(Count = 3)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30139,7 +30139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor3usv")] [CLSCompliant(false)] - public static unsafe void Color3([CountAttribute(Count = 3)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void Color3([CountAttribute(Count = 3)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30158,7 +30158,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Color4(SByte red, SByte green, SByte blue, SByte alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30168,7 +30168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30178,7 +30178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30188,7 +30188,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4bv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30206,7 +30206,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4d")] - public static void Color4(Double red, Double green, Double blue, Double alpha) { throw new NotImplementedException(); } + public static void Color4(Double red, Double green, Double blue, Double alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30216,7 +30216,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30226,7 +30226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30236,7 +30236,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4dv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30254,7 +30254,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4f")] - public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30264,7 +30264,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30274,7 +30274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30284,7 +30284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4fv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30302,7 +30302,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4i")] - public static void Color4(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void Color4(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30312,7 +30312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30322,7 +30322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30332,7 +30332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4iv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30350,7 +30350,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4s")] - public static void Color4(Int16 red, Int16 green, Int16 blue, Int16 alpha) { throw new NotImplementedException(); } + public static void Color4(Int16 red, Int16 green, Int16 blue, Int16 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30360,7 +30360,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30370,7 +30370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30380,7 +30380,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4sv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30398,7 +30398,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ub")] - public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new NotImplementedException(); } + public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30408,7 +30408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30418,7 +30418,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30428,7 +30428,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4ubv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30447,7 +30447,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Color4(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30457,7 +30457,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30467,7 +30467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30477,7 +30477,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4uiv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30496,7 +30496,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Color4(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30506,7 +30506,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30516,7 +30516,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] [CLSCompliant(false)] - public static void Color4([CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void Color4([CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color @@ -30526,7 +30526,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColor4usv")] [CLSCompliant(false)] - public static unsafe void Color4([CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void Color4([CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable and disable writing of frame buffer color components @@ -30544,7 +30544,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all True, indicating that the color components are written. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable and disable writing of frame buffer color components @@ -30566,7 +30566,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(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable and disable writing of frame buffer color components @@ -30588,7 +30588,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Cause a material color to track the current color @@ -30600,63 +30600,63 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which of several material parameters track the current color. Accepted values are Emission, Ambient, Diffuse, Specular, and AmbientAndDiffuse. The initial value is AmbientAndDiffuse. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColorMaterial")] - public static void ColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ColorMaterialParameter mode) { throw new NotImplementedException(); } + public static void ColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ColorMaterialParameter mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 color) { throw new NotImplementedException(); } + public static void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 color) { throw new NotImplementedException(); } + public static void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30674,7 +30674,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glColorPointer")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30695,7 +30695,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30716,7 +30716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30737,7 +30737,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of colors @@ -30757,7 +30757,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glColorPointer")] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30781,7 +30781,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to replace the specified region of the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] - public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new NotImplementedException(); } + public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30808,7 +30808,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,count")] T5[] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30835,7 +30835,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,count")] T5[,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30862,7 +30862,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,count")] T5[,,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -30888,7 +30888,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] 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, CountAttribute(Computed = "format,type,count")] ref T5 data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30912,7 +30912,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30939,7 +30939,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30966,7 +30966,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -30993,7 +30993,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -31019,7 +31019,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] 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, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31035,7 +31035,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31051,7 +31051,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, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31067,7 +31067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31083,7 +31083,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31099,7 +31099,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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -31115,7 +31115,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -31125,7 +31125,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(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -31135,7 +31135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31162,7 +31162,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31192,7 +31192,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31222,7 +31222,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31252,7 +31252,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -31281,7 +31281,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31311,7 +31311,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31344,7 +31344,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31377,7 +31377,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31410,7 +31410,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -31442,7 +31442,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31475,7 +31475,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31511,7 +31511,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31547,7 +31547,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31583,7 +31583,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -31618,7 +31618,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31645,7 +31645,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] - public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31675,7 +31675,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31705,7 +31705,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31735,7 +31735,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -31764,7 +31764,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31797,7 +31797,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31833,7 +31833,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31869,7 +31869,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31905,7 +31905,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -31940,7 +31940,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -31979,7 +31979,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -32021,7 +32021,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -32063,7 +32063,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -32105,7 +32105,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -32146,7 +32146,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32158,7 +32158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage1D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32172,7 +32172,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32186,7 +32186,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32200,7 +32200,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32214,7 +32214,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32226,7 +32226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage1D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32240,7 +32240,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32254,7 +32254,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32268,7 +32268,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32282,7 +32282,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32296,7 +32296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage2D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32312,7 +32312,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32328,7 +32328,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32344,7 +32344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32360,7 +32360,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32374,7 +32374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage2D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32390,7 +32390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32406,7 +32406,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32422,7 +32422,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32438,7 +32438,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32454,7 +32454,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage3D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32472,7 +32472,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32490,7 +32490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32508,7 +32508,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32526,7 +32526,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32542,7 +32542,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage3D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32560,7 +32560,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32578,7 +32578,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32596,7 +32596,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -32614,7 +32614,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32638,7 +32638,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32665,7 +32665,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32692,7 +32692,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32719,7 +32719,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -32745,7 +32745,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] 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, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32772,7 +32772,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32802,7 +32802,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32832,7 +32832,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32862,7 +32862,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -32891,7 +32891,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32906,7 +32906,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterf")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32922,7 +32922,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32938,7 +32938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32953,7 +32953,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteri")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32969,7 +32969,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -32985,7 +32985,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -33006,7 +33006,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ARB_copy_buffer|VERSION_3_1", Version = "3.1", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -33027,7 +33027,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ARB_copy_buffer|VERSION_3_1", Version = "3.1", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -33048,7 +33048,7 @@ namespace OpenTK.Graphics.OpenGL /// The number of table entries to replace. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorSubTable")] - public static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a color table @@ -33069,7 +33069,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel rectangle. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorTable")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a one-dimensional convolution filter @@ -33090,7 +33090,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter1D")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a two-dimensional convolution filter @@ -33114,7 +33114,7 @@ namespace OpenTK.Graphics.OpenGL /// The height of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter2D")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -33166,7 +33166,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -33218,7 +33218,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33228,7 +33228,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33238,7 +33238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33248,7 +33248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33258,7 +33258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Copy pixels in the frame buffer @@ -33279,7 +33279,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether color values, depth values, or stencil values are to be copied. Symbolic constants Color, Depth, and Stencil are accepted. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCopyPixels")] - public static void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelCopyType type) { throw new NotImplementedException(); } + public static void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelCopyType type) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 1D texture image @@ -33306,7 +33306,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage1D")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 2D texture image @@ -33336,7 +33336,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a one-dimensional texture subimage @@ -33360,7 +33360,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the width of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexSubImage1D")] - public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a two-dimensional texture subimage @@ -33390,7 +33390,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Copy a three-dimensional texture subimage @@ -33423,7 +33423,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33434,7 +33434,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage1D")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33445,7 +33445,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage1D")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33458,7 +33458,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage2D")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33471,7 +33471,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage2D")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33485,7 +33485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage3D")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33499,139 +33499,139 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage3D")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a program object /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33639,7 +33639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33647,7 +33647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33655,7 +33655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33663,7 +33663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33671,7 +33671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33679,91 +33679,91 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a shader object @@ -33772,7 +33772,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the type of shader to be created. Must be one of ComputeShader, VertexShader, TessControlShader, TessEvaluationShader, GeometryShader, or FragmentShader. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.OpenGL.ShaderType type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.OpenGL.ShaderType type) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Create a stand-alone program from an array of null-terminated source code strings @@ -33787,7 +33787,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glCreateShaderProgramv")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33795,7 +33795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33803,7 +33803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33811,7 +33811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33819,7 +33819,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33827,7 +33827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33835,91 +33835,91 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing facets can be culled @@ -33928,7 +33928,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.OpenGL.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.OpenGL.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33940,7 +33940,7 @@ namespace OpenTK.Graphics.OpenGL /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33955,7 +33955,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33970,7 +33970,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33985,7 +33985,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -33999,7 +33999,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34024,7 +34024,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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34049,7 +34049,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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34074,7 +34074,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34099,7 +34099,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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34124,7 +34124,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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -34149,7 +34149,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL.DebugSourceControl source, OpenTK.Graphics.OpenGL.DebugTypeControl type, OpenTK.Graphics.OpenGL.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Inject an application-supplied message into the debug message queue @@ -34174,7 +34174,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, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSourceExternal source, OpenTK.Graphics.OpenGL.DebugType type, Int32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Inject an application-supplied message into the debug message queue @@ -34199,7 +34199,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, UInt32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL.DebugSourceExternal source, OpenTK.Graphics.OpenGL.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34209,7 +34209,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34219,7 +34219,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34232,7 +34232,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34245,7 +34245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34258,7 +34258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34271,7 +34271,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34284,7 +34284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -34297,7 +34297,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34307,7 +34307,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34317,7 +34317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34330,7 +34330,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, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34343,7 +34343,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, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34356,7 +34356,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34369,7 +34369,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, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34382,7 +34382,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, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -34395,7 +34395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Delete a contiguous group of display lists @@ -34408,7 +34408,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(); } + public static void DeleteLists(Int32 list, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Delete a contiguous group of display lists @@ -34421,7 +34421,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDeleteLists")] [CLSCompliant(false)] - public static void DeleteLists(UInt32 list, Int32 range) { throw new NotImplementedException(); } + public static void DeleteLists(UInt32 list, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a program object @@ -34431,7 +34431,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(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a program object @@ -34441,7 +34441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34451,7 +34451,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([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34461,7 +34461,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([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34474,7 +34474,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, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34487,7 +34487,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, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34500,7 +34500,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34513,7 +34513,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, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34526,7 +34526,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, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -34539,7 +34539,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34549,7 +34549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34559,7 +34559,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34572,7 +34572,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34585,7 +34585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34598,7 +34598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34611,7 +34611,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34624,7 +34624,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -34637,7 +34637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34647,7 +34647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34657,7 +34657,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34670,7 +34670,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, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34683,7 +34683,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, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34696,7 +34696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34709,7 +34709,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, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34722,7 +34722,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, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -34735,7 +34735,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34745,7 +34745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34755,7 +34755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34768,7 +34768,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, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34781,7 +34781,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, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34794,7 +34794,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34807,7 +34807,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, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34820,7 +34820,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, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -34833,7 +34833,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a shader object @@ -34843,7 +34843,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(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a shader object @@ -34853,7 +34853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Delete a sync object @@ -34862,7 +34862,7 @@ namespace OpenTK.Graphics.OpenGL /// The sync object to be deleted. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glDeleteSync")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34872,7 +34872,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34882,7 +34882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34895,7 +34895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34908,7 +34908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34921,7 +34921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34934,7 +34934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34947,7 +34947,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -34960,7 +34960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -34970,7 +34970,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -34980,7 +34980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -34993,7 +34993,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, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35006,7 +35006,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, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35019,7 +35019,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35032,7 +35032,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, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35045,7 +35045,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, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -35058,7 +35058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35068,7 +35068,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([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35078,7 +35078,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([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35091,7 +35091,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, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35104,7 +35104,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, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35117,7 +35117,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35130,7 +35130,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, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35143,7 +35143,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, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -35156,7 +35156,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the value used for depth buffer comparisons @@ -35165,7 +35165,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable writing into the depth buffer @@ -35174,7 +35174,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -35186,7 +35186,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthRange")] - public static void DepthRange(Double near, Double far) { throw new NotImplementedException(); } + public static void DepthRange(Double near, Double far) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35202,7 +35202,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, [CountAttribute(Computed = "count")] Double[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35218,7 +35218,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, [CountAttribute(Computed = "count")] ref Double v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35234,7 +35234,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35250,7 +35250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35266,7 +35266,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -35282,7 +35282,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -35294,7 +35294,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -35310,7 +35310,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(); } + public static void DepthRangeIndexed(Int32 index, Double n, Double f) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -35326,7 +35326,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void DepthRangeIndexed(UInt32 index, Double n, Double f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Detaches a shader object from a program object to which it is attached @@ -35339,7 +35339,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(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Detaches a shader object from a program object to which it is attached @@ -35352,57 +35352,57 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDisableClientState")] - public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void Disable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [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(); } + public static void Disable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glDisableVertexArrayAttrib")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glDisableVertexArrayAttrib")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups @@ -35418,7 +35418,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(); } + public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups @@ -35434,7 +35434,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups using parameters stored in a buffer @@ -35443,7 +35443,7 @@ namespace OpenTK.Graphics.OpenGL /// The offset into the buffer object currently bound to the DispatchIndirectBuffer buffer target at which the dispatch parameters are stored. /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchComputeIndirect")] - public static void DispatchComputeIndirect(IntPtr indirect) { throw new NotImplementedException(); } + public static void DispatchComputeIndirect(IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35459,7 +35459,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35474,7 +35474,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35487,7 +35487,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35503,7 +35503,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35519,7 +35519,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35535,7 +35535,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35550,7 +35550,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35562,7 +35562,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35577,7 +35577,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35592,7 +35592,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35607,7 +35607,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -35621,7 +35621,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a range of elements @@ -35640,7 +35640,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a range of elements @@ -35658,7 +35658,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -35680,7 +35680,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(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -35702,7 +35702,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, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify which color buffers are to be drawn into @@ -35711,7 +35711,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies up to four color buffers to be drawn into. Symbolic constants None, FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and FrontAndBack are accepted. The initial value is Front for single-buffered contexts, and Back for double-buffered contexts. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawBuffer")] - public static void DrawBuffer(OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void DrawBuffer(OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -35724,7 +35724,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -35737,7 +35737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -35750,7 +35750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35768,7 +35768,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35787,7 +35787,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35809,7 +35809,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35831,7 +35831,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35853,7 +35853,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35874,7 +35874,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35892,7 +35892,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35910,7 +35910,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35931,7 +35931,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35952,7 +35952,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35973,7 +35973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -35993,7 +35993,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36015,7 +36015,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")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36040,7 +36040,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36065,7 +36065,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36090,7 +36090,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36114,7 +36114,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36135,7 +36135,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36159,7 +36159,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36183,7 +36183,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36207,7 +36207,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -36230,7 +36230,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36246,7 +36246,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36265,7 +36265,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36284,7 +36284,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36303,7 +36303,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36321,7 +36321,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.ArbDrawIndirect mode, OpenTK.Graphics.OpenGL.ArbDrawIndirect type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36336,7 +36336,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36354,7 +36354,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36372,7 +36372,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36390,7 +36390,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -36407,7 +36407,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.All type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36429,7 +36429,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36454,7 +36454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36479,7 +36479,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36504,7 +36504,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36528,7 +36528,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36549,7 +36549,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36573,7 +36573,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36597,7 +36597,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36621,7 +36621,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -36644,7 +36644,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36669,7 +36669,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, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36694,7 +36694,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, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36721,7 +36721,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36748,7 +36748,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36775,7 +36775,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36802,7 +36802,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36829,7 +36829,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36856,7 +36856,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36883,7 +36883,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -36910,7 +36910,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -36935,7 +36935,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")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -36963,7 +36963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -36991,7 +36991,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37019,7 +37019,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37046,7 +37046,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37070,7 +37070,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37097,7 +37097,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37124,7 +37124,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37151,7 +37151,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37177,7 +37177,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37205,7 +37205,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, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37233,7 +37233,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, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37263,7 +37263,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37293,7 +37293,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37323,7 +37323,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37353,7 +37353,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37383,7 +37383,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37413,7 +37413,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37443,7 +37443,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -37473,7 +37473,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37494,7 +37494,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the pixel data. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawPixels")] - public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37518,7 +37518,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T4[] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37542,7 +37542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T4[,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37566,7 +37566,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T4[,,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Write a block of pixels to the frame buffer @@ -37589,7 +37589,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawPixels")] public static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T4 pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37615,7 +37615,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, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37643,7 +37643,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37671,7 +37671,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37699,7 +37699,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37727,7 +37727,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37753,7 +37753,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37781,7 +37781,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37809,7 +37809,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37837,7 +37837,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37865,7 +37865,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37890,7 +37890,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, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37917,7 +37917,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37944,7 +37944,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37971,7 +37971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -37998,7 +37998,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38023,7 +38023,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38050,7 +38050,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38077,7 +38077,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38104,7 +38104,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -38131,7 +38131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38160,7 +38160,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, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38191,7 +38191,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38222,7 +38222,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38253,7 +38253,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38284,7 +38284,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38313,7 +38313,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38344,7 +38344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38375,7 +38375,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38406,7 +38406,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38437,7 +38437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38465,7 +38465,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, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38495,7 +38495,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38525,7 +38525,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38555,7 +38555,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38585,7 +38585,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38613,7 +38613,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38643,7 +38643,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38673,7 +38673,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38703,7 +38703,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -38733,7 +38733,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -38747,7 +38747,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -38761,7 +38761,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedback")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -38774,7 +38774,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(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -38787,7 +38787,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, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -38803,7 +38803,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(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -38819,7 +38819,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, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -38836,7 +38836,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 id, Int32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 id, Int32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -38853,7 +38853,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "ARB_transform_feedback3|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawTransformFeedbackStream")] [CLSCompliant(false)] - public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 id, UInt32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 id, UInt32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -38869,7 +38869,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(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -38885,7 +38885,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, UInt32 id, UInt32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, UInt32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object @@ -38904,7 +38904,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(); } + public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id, Int32 stream, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object @@ -38923,7 +38923,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, UInt32 id, UInt32 stream, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id, UInt32 stream, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Flag edges as either boundary or nonboundary @@ -38932,7 +38932,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the current edge flag value, either True or False. The initial value is True. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlag")] - public static void EdgeFlag(bool flag) { throw new NotImplementedException(); } + public static void EdgeFlag(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -38944,7 +38944,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first edge flag in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEdgeFlagPointer")] - public static void EdgeFlagPointer(Int32 stride, [CountAttribute(Computed = "stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void EdgeFlagPointer(Int32 stride, [CountAttribute(Computed = "stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -38959,7 +38959,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "stride")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -38974,7 +38974,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "stride")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -38989,7 +38989,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "stride")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of edge flags @@ -39003,7 +39003,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEdgeFlagPointer")] public static void EdgeFlagPointer(Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "stride")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Flag edges as either boundary or nonboundary @@ -39014,7 +39014,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ref overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")] [CLSCompliant(false)] - public static void EdgeFlag([CountAttribute(Count = 1)] bool[] flag) { throw new NotImplementedException(); } + public static void EdgeFlag([CountAttribute(Count = 1)] bool[] flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Flag edges as either boundary or nonboundary @@ -39025,7 +39025,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ref overload instead")] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")] [CLSCompliant(false)] - public static unsafe void EdgeFlag([CountAttribute(Count = 1)] bool* flag) { throw new NotImplementedException(); } + public static unsafe void EdgeFlag([CountAttribute(Count = 1)] bool* flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable server-side GL capabilities @@ -39034,7 +39034,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Enable or disable client-side capability @@ -39043,7 +39043,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the capability to enable. Symbolic constants ColorArray, EdgeFlagArray, FogCoordArray, IndexArray, NormalArray, SecondaryColorArray, TextureCoordArray, and VertexArray are accepted. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glEnableClientState")] - public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable or disable server-side GL capabilities @@ -39056,7 +39056,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(); } + public static void Enable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable or disable server-side GL capabilities @@ -39069,21 +39069,21 @@ 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, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glEnableVertexArrayAttrib")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glEnableVertexArrayAttrib")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Enable or disable a generic vertex attribute array @@ -39093,7 +39093,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(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Enable or disable a generic vertex attribute array @@ -39103,42 +39103,42 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEnd")] - public static void End() { throw new NotImplementedException(); } + public static void End() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEndConditionalRender")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEndList")] - public static void EndList() { throw new NotImplementedException(); } + public static void EndList() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or 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(); } + public static void EndQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or 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, UInt32 index) { throw new NotImplementedException(); } + public static void EndQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39147,7 +39147,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap1 or glMap2 command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1d")] - public static void EvalCoord1(Double u) { throw new NotImplementedException(); } + public static void EvalCoord1(Double u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39157,7 +39157,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1dv")] [CLSCompliant(false)] - public static unsafe void EvalCoord1([CountAttribute(Count = 1)] Double* u) { throw new NotImplementedException(); } + public static unsafe void EvalCoord1([CountAttribute(Count = 1)] Double* u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39166,7 +39166,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that is the domain coordinate to the basis function defined in a previous glMap1 or glMap2 command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1f")] - public static void EvalCoord1(Single u) { throw new NotImplementedException(); } + public static void EvalCoord1(Single u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39176,7 +39176,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord1fv")] [CLSCompliant(false)] - public static unsafe void EvalCoord1([CountAttribute(Count = 1)] Single* u) { throw new NotImplementedException(); } + public static unsafe void EvalCoord1([CountAttribute(Count = 1)] Single* u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39188,7 +39188,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2d")] - public static void EvalCoord2(Double u, Double v) { throw new NotImplementedException(); } + public static void EvalCoord2(Double u, Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39198,7 +39198,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] [CLSCompliant(false)] - public static void EvalCoord2([CountAttribute(Count = 2)] Double[] u) { throw new NotImplementedException(); } + public static void EvalCoord2([CountAttribute(Count = 2)] Double[] u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39208,7 +39208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] [CLSCompliant(false)] - public static void EvalCoord2([CountAttribute(Count = 2)] ref Double u) { throw new NotImplementedException(); } + public static void EvalCoord2([CountAttribute(Count = 2)] ref Double u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39218,7 +39218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2dv")] [CLSCompliant(false)] - public static unsafe void EvalCoord2([CountAttribute(Count = 2)] Double* u) { throw new NotImplementedException(); } + public static unsafe void EvalCoord2([CountAttribute(Count = 2)] Double* u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39230,7 +39230,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2f")] - public static void EvalCoord2(Single u, Single v) { throw new NotImplementedException(); } + public static void EvalCoord2(Single u, Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39240,7 +39240,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] [CLSCompliant(false)] - public static void EvalCoord2([CountAttribute(Count = 2)] Single[] u) { throw new NotImplementedException(); } + public static void EvalCoord2([CountAttribute(Count = 2)] Single[] u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39250,7 +39250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] [CLSCompliant(false)] - public static void EvalCoord2([CountAttribute(Count = 2)] ref Single u) { throw new NotImplementedException(); } + public static void EvalCoord2([CountAttribute(Count = 2)] ref Single u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Evaluate enabled one- and two-dimensional maps @@ -39260,7 +39260,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalCoord2fv")] [CLSCompliant(false)] - public static unsafe void EvalCoord2([CountAttribute(Count = 2)] Single* u) { throw new NotImplementedException(); } + public static unsafe void EvalCoord2([CountAttribute(Count = 2)] Single* u) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Compute a one- or two-dimensional grid of points or lines @@ -39275,7 +39275,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the first and last integer values for grid domain variable . /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalMesh1")] - public static void EvalMesh1(OpenTK.Graphics.OpenGL.MeshMode1 mode, Int32 i1, Int32 i2) { throw new NotImplementedException(); } + public static void EvalMesh1(OpenTK.Graphics.OpenGL.MeshMode1 mode, Int32 i1, Int32 i2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Compute a one- or two-dimensional grid of points or lines @@ -39292,7 +39292,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalMesh2")] - public static void EvalMesh2(OpenTK.Graphics.OpenGL.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2) { throw new NotImplementedException(); } + public static void EvalMesh2(OpenTK.Graphics.OpenGL.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Generate and evaluate a single point in a mesh @@ -39301,7 +39301,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the integer value for grid domain variable . /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalPoint1")] - public static void EvalPoint1(Int32 i) { throw new NotImplementedException(); } + public static void EvalPoint1(Int32 i) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Generate and evaluate a single point in a mesh @@ -39313,7 +39313,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the integer value for grid domain variable (glEvalPoint2 only). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEvalPoint2")] - public static void EvalPoint2(Int32 i, Int32 j) { throw new NotImplementedException(); } + public static void EvalPoint2(Int32 i, Int32 j) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Controls feedback mode @@ -39329,7 +39329,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, CountAttribute(Parameter = "size")] Single[] buffer) { throw new NotImplementedException(); } + public static void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] Single[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Controls feedback mode @@ -39345,7 +39345,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, CountAttribute(Parameter = "size")] out Single buffer) { throw new NotImplementedException(); } + public static void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] out Single buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Controls feedback mode @@ -39361,7 +39361,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "size")] Single* buffer) { throw new NotImplementedException(); } + public static unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute, CountAttribute(Parameter = "size")] Single* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Create a new sync object and insert it into the GL command stream @@ -39375,7 +39375,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SyncCondition overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, Int32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Create a new sync object and insert it into the GL command stream @@ -39389,7 +39389,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SyncCondition overload instead")] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] [CLSCompliant(false)] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, UInt32 flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Create a new sync object and insert it into the GL command stream @@ -39401,19 +39401,19 @@ namespace OpenTK.Graphics.OpenGL /// 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. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.SyncCondition condition, OpenTK.Graphics.OpenGL.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.OpenGL.SyncCondition condition, OpenTK.Graphics.OpenGL.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -39428,7 +39428,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -39443,7 +39443,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -39451,7 +39451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -39459,7 +39459,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -39467,7 +39467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -39475,7 +39475,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current fog coordinates @@ -39484,7 +39484,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordd")] - public static void FogCoord(Double coord) { throw new NotImplementedException(); } + public static void FogCoord(Double coord) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current fog coordinates @@ -39494,7 +39494,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoorddv")] [CLSCompliant(false)] - public static unsafe void FogCoord([CountAttribute(Count = 1)] Double* coord) { throw new NotImplementedException(); } + public static unsafe void FogCoord([CountAttribute(Count = 1)] Double* coord) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current fog coordinates @@ -39503,7 +39503,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordf")] - public static void FogCoord(Single coord) { throw new NotImplementedException(); } + public static void FogCoord(Single coord) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current fog coordinates @@ -39513,7 +39513,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordfv")] [CLSCompliant(false)] - public static unsafe void FogCoord([CountAttribute(Count = 1)] Single* coord) { throw new NotImplementedException(); } + public static unsafe void FogCoord([CountAttribute(Count = 1)] Single* coord) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39528,7 +39528,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first fog coordinate in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordPointer")] - public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39546,7 +39546,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39564,7 +39564,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39582,7 +39582,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of fog coordinates @@ -39599,7 +39599,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glFogCoordPointer")] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39611,7 +39611,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogf")] - public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Single param) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39624,7 +39624,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39637,7 +39637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogfv")] [CLSCompliant(false)] - public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39649,7 +39649,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogi")] - public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39662,7 +39662,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify fog parameters @@ -39675,7 +39675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFogiv")] [CLSCompliant(false)] - public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Fog(OpenTK.Graphics.OpenGL.FogParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Set a named parameter of a framebuffer @@ -39690,7 +39690,7 @@ namespace OpenTK.Graphics.OpenGL /// The new value for the parameter named pname. /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glFramebufferParameteri")] - public static void FramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void FramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -39709,7 +39709,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -39728,7 +39728,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -39747,7 +39747,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(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -39766,7 +39766,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, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39776,7 +39776,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39786,7 +39786,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39796,7 +39796,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39806,7 +39806,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39817,7 +39817,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -39828,7 +39828,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -39850,7 +39850,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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -39872,7 +39872,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, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define front- and back-facing polygons @@ -39881,7 +39881,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.OpenGL.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.OpenGL.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a perspective matrix @@ -39905,14 +39905,14 @@ namespace OpenTK.Graphics.OpenGL /// Specify the distances to the near and far depth clipping planes. Both distances must be positive. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFrustum")] - public static void Frustum(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void Frustum(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39925,7 +39925,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39938,7 +39938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39951,7 +39951,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39964,7 +39964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39977,7 +39977,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -39990,7 +39990,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate mipmaps for a specified texture target @@ -39999,26 +39999,26 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture1D, Texture2D, Texture3D, Texture1DArray, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGenerateTextureMipmap")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(Int32 texture) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGenerateTextureMipmap")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(UInt32 texture) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40031,7 +40031,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, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40044,7 +40044,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, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40057,7 +40057,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40070,7 +40070,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, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40083,7 +40083,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, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -40096,7 +40096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Generate a contiguous set of empty display lists @@ -40105,14 +40105,14 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of contiguous empty display lists to be generated. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGenLists")] - public static Int32 GenLists(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenLists(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40125,7 +40125,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, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40138,7 +40138,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, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40151,7 +40151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40164,7 +40164,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, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40177,7 +40177,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, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -40190,14 +40190,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40210,7 +40210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40223,7 +40223,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40236,7 +40236,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40249,7 +40249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40262,7 +40262,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -40275,14 +40275,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40295,7 +40295,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, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40308,7 +40308,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, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40321,7 +40321,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40334,7 +40334,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, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40347,7 +40347,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, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -40360,14 +40360,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static Int32 GenSampler() { throw new NotImplementedException(); } + public static Int32 GenSampler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40380,7 +40380,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, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40393,7 +40393,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, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40406,7 +40406,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40419,7 +40419,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, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40432,7 +40432,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, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -40445,14 +40445,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40465,7 +40465,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40478,7 +40478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40491,7 +40491,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40504,7 +40504,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40517,7 +40517,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -40530,14 +40530,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40550,7 +40550,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, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40563,7 +40563,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, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40576,7 +40576,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40589,7 +40589,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, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40602,7 +40602,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, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -40615,14 +40615,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40635,7 +40635,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, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40648,7 +40648,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, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40661,7 +40661,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40674,7 +40674,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, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40687,7 +40687,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, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -40700,7 +40700,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40719,7 +40719,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40738,7 +40738,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40757,7 +40757,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40776,7 +40776,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(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40795,7 +40795,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(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -40814,7 +40814,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -40842,7 +40842,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -40870,7 +40870,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -40898,7 +40898,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -40926,7 +40926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -40951,7 +40951,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -40976,7 +40976,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -41001,7 +41001,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -41026,7 +41026,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41048,7 +41048,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, CountAttribute(Computed = "pname")] Int32[] values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41070,7 +41070,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, CountAttribute(Computed = "pname")] out Int32 values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41092,7 +41092,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41114,7 +41114,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32[] values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41136,7 +41136,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] out Int32 values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -41158,7 +41158,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -41183,7 +41183,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -41208,7 +41208,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -41233,7 +41233,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -41258,7 +41258,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -41286,7 +41286,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -41314,7 +41314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -41342,7 +41342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -41370,7 +41370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41389,7 +41389,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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41408,7 +41408,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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41427,7 +41427,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41446,7 +41446,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(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41465,7 +41465,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(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -41484,7 +41484,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -41506,7 +41506,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -41528,7 +41528,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -41550,7 +41550,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(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -41572,7 +41572,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -41594,7 +41594,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -41616,7 +41616,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -41638,7 +41638,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(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -41660,7 +41660,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41682,7 +41682,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, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41704,7 +41704,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, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41726,7 +41726,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41748,7 +41748,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(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41770,7 +41770,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(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -41792,7 +41792,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41811,7 +41811,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, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41830,7 +41830,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, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41849,7 +41849,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41868,7 +41868,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41887,7 +41887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -41906,7 +41906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of an attribute variable @@ -41919,7 +41919,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(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of an attribute variable @@ -41932,7 +41932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41940,7 +41940,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41948,7 +41948,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41956,7 +41956,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41964,7 +41964,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41972,7 +41972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -41980,34 +41980,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -42023,7 +42023,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -42039,7 +42039,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -42055,7 +42055,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -42071,7 +42071,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -42087,7 +42087,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -42103,7 +42103,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42118,7 +42118,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42136,7 +42136,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42154,7 +42154,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42172,7 +42172,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -42189,7 +42189,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42207,7 +42207,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42228,7 +42228,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42249,7 +42249,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42270,7 +42270,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42290,7 +42290,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42308,7 +42308,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42329,7 +42329,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42350,7 +42350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42371,7 +42371,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -42391,7 +42391,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the coefficients of the specified clipping plane @@ -42404,7 +42404,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, CountAttribute(Count = 4)] Double[] equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Double[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the coefficients of the specified clipping plane @@ -42417,7 +42417,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, CountAttribute(Count = 4)] out Double equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] out Double equation) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the coefficients of the specified clipping plane @@ -42430,7 +42430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetClipPlane")] [CLSCompliant(false)] - public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Double* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute, CountAttribute(Count = 4)] Double* equation) { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42448,7 +42448,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data containing the contents of the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] - public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42469,7 +42469,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42490,7 +42490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42511,7 +42511,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -42531,7 +42531,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42547,7 +42547,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42563,7 +42563,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42579,7 +42579,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42595,7 +42595,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42611,7 +42611,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -42627,7 +42627,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42642,7 +42642,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the compressed texture image. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] - public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42660,7 +42660,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42678,7 +42678,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42696,7 +42696,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -42713,7 +42713,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] ref T2 img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42722,7 +42722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureImage")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42733,7 +42733,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42744,7 +42744,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42755,7 +42755,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42766,7 +42766,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42775,7 +42775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureImage")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42786,7 +42786,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42797,7 +42797,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42808,7 +42808,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42819,7 +42819,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42834,7 +42834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureSubImage")] [CLSCompliant(false)] - public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42851,7 +42851,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42868,7 +42868,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42885,7 +42885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42902,7 +42902,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42917,7 +42917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureSubImage")] [CLSCompliant(false)] - public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42934,7 +42934,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42951,7 +42951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42968,7 +42968,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -42985,7 +42985,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43003,7 +43003,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the output image. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] - public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new NotImplementedException(); } + public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43024,7 +43024,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43045,7 +43045,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43066,7 +43066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -43086,7 +43086,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43102,7 +43102,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43118,7 +43118,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43134,7 +43134,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43150,7 +43150,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43166,7 +43166,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -43182,7 +43182,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43213,7 +43213,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, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43244,7 +43244,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, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43275,7 +43275,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43306,7 +43306,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43337,7 +43337,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -43368,7 +43368,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43376,7 +43376,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43384,7 +43384,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43392,7 +43392,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43400,7 +43400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43408,7 +43408,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43416,40 +43416,40 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Double GetDouble(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return error information /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.OpenGL.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43457,7 +43457,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43465,7 +43465,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43473,7 +43473,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43481,7 +43481,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43489,7 +43489,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -43497,34 +43497,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetFloat(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Query the bindings of color indices to user-defined varying out variables @@ -43537,7 +43537,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(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Query the bindings of color indices to user-defined varying out variables @@ -43550,7 +43550,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(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Query the bindings of color numbers to user-defined varying out variables @@ -43563,7 +43563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Query the bindings of color numbers to user-defined varying out variables @@ -43576,7 +43576,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -43595,7 +43595,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -43614,7 +43614,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -43633,7 +43633,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -43649,7 +43649,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -43665,7 +43665,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -43681,11 +43681,11 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.OpenGL.ResetStatus GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.ResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43706,7 +43706,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43730,7 +43730,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43754,7 +43754,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43778,7 +43778,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -43801,7 +43801,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43817,7 +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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43833,7 +43833,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43849,7 +43849,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43865,7 +43865,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43881,7 +43881,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -43897,7 +43897,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43905,7 +43905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43913,7 +43913,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43921,7 +43921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43929,7 +43929,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43937,7 +43937,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43945,7 +43945,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43954,7 +43954,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43963,7 +43963,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43972,7 +43972,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43981,7 +43981,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43990,7 +43990,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -43999,20 +43999,20 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or 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(); } + public static Int64 GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or 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(); } + public static Int64 GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// @@ -44020,7 +44020,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// @@ -44028,7 +44028,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// @@ -44036,28 +44036,28 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetPName overload instead")] [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, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44065,7 +44065,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44073,7 +44073,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44081,7 +44081,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44089,7 +44089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44097,7 +44097,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -44105,34 +44105,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int32 GetInteger(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -44154,7 +44154,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "bufSize")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -44176,7 +44176,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "bufSize")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -44198,7 +44198,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "bufSize")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -44220,7 +44220,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, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -44242,7 +44242,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, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -44264,7 +44264,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL.ImageTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44280,7 +44280,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44296,7 +44296,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44312,7 +44312,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44328,7 +44328,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44344,7 +44344,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return light source parameter values @@ -44360,7 +44360,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetLight(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44376,7 +44376,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, CountAttribute(Computed = "target,query")] Double[] v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44392,7 +44392,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, CountAttribute(Computed = "target,query")] out Double v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44408,7 +44408,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "target,query")] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44424,7 +44424,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, CountAttribute(Computed = "target,query")] Single[] v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44440,7 +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, CountAttribute(Computed = "target,query")] out Single v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44456,7 +44456,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "target,query")] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44472,7 +44472,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, CountAttribute(Computed = "target,query")] Int32[] v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44488,7 +44488,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, CountAttribute(Computed = "target,query")] out Int32 v) { throw new NotImplementedException(); } + public static void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return evaluator parameters @@ -44504,7 +44504,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "target,query")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetMap(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute, CountAttribute(Computed = "target,query")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44520,7 +44520,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44536,7 +44536,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44552,7 +44552,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44568,7 +44568,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44584,7 +44584,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return material parameters @@ -44600,7 +44600,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44621,7 +44621,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44645,7 +44645,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44669,7 +44669,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44693,7 +44693,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -44716,7 +44716,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44732,7 +44732,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44748,7 +44748,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44764,7 +44764,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44780,7 +44780,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44796,7 +44796,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -44812,7 +44812,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44828,7 +44828,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, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44844,7 +44844,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, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44860,7 +44860,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44876,7 +44876,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, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44892,7 +44892,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, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -44908,7 +44908,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44916,7 +44916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44924,7 +44924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44932,7 +44932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44940,7 +44940,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44948,7 +44948,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44956,7 +44956,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44964,7 +44964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44972,7 +44972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44980,7 +44980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44988,7 +44988,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44996,7 +44996,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45004,7 +45004,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45012,7 +45012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferPointerv")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45022,7 +45022,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45032,7 +45032,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45042,7 +45042,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45052,7 +45052,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45060,7 +45060,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferPointerv")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45070,7 +45070,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45080,7 +45080,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45090,7 +45090,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45100,7 +45100,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45109,7 +45109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45120,7 +45120,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45131,7 +45131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45142,7 +45142,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45153,7 +45153,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45162,7 +45162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45173,7 +45173,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45184,7 +45184,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45195,7 +45195,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45206,7 +45206,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45215,7 +45215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45226,7 +45226,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45237,7 +45237,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45248,7 +45248,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45259,7 +45259,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45268,7 +45268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45279,7 +45279,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45290,7 +45290,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45301,7 +45301,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45312,7 +45312,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45321,7 +45321,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45330,7 +45330,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45339,7 +45339,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45348,7 +45348,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45357,7 +45357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45366,7 +45366,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45374,7 +45374,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45382,7 +45382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45390,7 +45390,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45398,7 +45398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45406,7 +45406,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45414,7 +45414,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45422,7 +45422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45430,7 +45430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45438,7 +45438,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45446,7 +45446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45454,7 +45454,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -45462,7 +45462,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45471,7 +45471,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new NotImplementedException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45483,7 +45483,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45495,7 +45495,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45507,7 +45507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45518,7 +45518,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] public static void GetnColorTable(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45526,7 +45526,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45537,7 +45537,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45548,7 +45548,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45559,7 +45559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45569,7 +45569,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45578,7 +45578,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new NotImplementedException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45590,7 +45590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45602,7 +45602,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45614,7 +45614,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T4[,,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45625,7 +45625,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45635,7 +45635,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new NotImplementedException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45648,7 +45648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45661,7 +45661,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45674,7 +45674,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45686,7 +45686,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] public static void GetnHistogram(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45695,7 +45695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45704,7 +45704,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Double v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45713,7 +45713,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45722,7 +45722,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45731,7 +45731,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45740,7 +45740,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45749,7 +45749,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45758,7 +45758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45767,7 +45767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 query, Int32 bufSize, [OutAttribute] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45777,7 +45777,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new NotImplementedException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45790,7 +45790,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45803,7 +45803,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45816,7 +45816,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45828,7 +45828,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] public static void GetnMinmax(OpenTK.Graphics.OpenGL.Version45 target, bool reset, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45836,7 +45836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45844,7 +45844,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45852,7 +45852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45860,7 +45860,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45868,7 +45868,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45876,7 +45876,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45884,7 +45884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45892,7 +45892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45900,7 +45900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45908,7 +45908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45916,7 +45916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45924,7 +45924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45932,7 +45932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45940,7 +45940,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45948,33 +45948,33 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL.Version45 map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetnPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new NotImplementedException(); } + public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -45986,7 +45986,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new NotImplementedException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL.Version45 target, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46003,7 +46003,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46020,7 +46020,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46037,7 +46037,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46053,7 +46053,7 @@ namespace OpenTK.Graphics.OpenGL where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46063,7 +46063,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46076,7 +46076,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46089,7 +46089,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46102,7 +46102,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46114,7 +46114,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] public static void GetnTexImage(OpenTK.Graphics.OpenGL.Version45 target, Int32 level, OpenTK.Graphics.OpenGL.Version45 format, OpenTK.Graphics.OpenGL.Version45 type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46123,7 +46123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46132,7 +46132,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46141,7 +46141,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46150,7 +46150,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46159,7 +46159,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -46168,7 +46168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46177,7 +46177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46186,7 +46186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46195,7 +46195,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46204,7 +46204,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46213,7 +46213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46222,7 +46222,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46231,7 +46231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46240,7 +46240,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46249,7 +46249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46258,7 +46258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46267,7 +46267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46276,7 +46276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46285,7 +46285,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46294,7 +46294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -46303,7 +46303,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46325,7 +46325,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46347,7 +46347,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46369,7 +46369,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46391,7 +46391,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, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46413,7 +46413,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, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -46435,7 +46435,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46455,7 +46455,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46475,7 +46475,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46495,7 +46495,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46517,7 +46517,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46539,7 +46539,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46561,7 +46561,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46583,7 +46583,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46605,7 +46605,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46627,7 +46627,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46649,7 +46649,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46671,7 +46671,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46693,7 +46693,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46715,7 +46715,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46737,7 +46737,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -46759,7 +46759,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46769,7 +46769,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(); } + public static Single GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46782,7 +46782,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, CountAttribute(Computed = "map")] Single[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46795,7 +46795,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, CountAttribute(Computed = "map")] out Single values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46808,7 +46808,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapfv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46821,7 +46821,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, CountAttribute(Computed = "map")] Int32[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46834,7 +46834,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, CountAttribute(Computed = "map")] out Int32 values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46847,7 +46847,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46860,7 +46860,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, CountAttribute(Computed = "map")] UInt32[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46873,7 +46873,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, CountAttribute(Computed = "map")] out UInt32 values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46886,7 +46886,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46899,7 +46899,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, CountAttribute(Computed = "map")] Int16[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46912,7 +46912,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, CountAttribute(Computed = "map")] out Int16 values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46925,7 +46925,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46938,7 +46938,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, CountAttribute(Computed = "map")] UInt16[] values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46951,7 +46951,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, CountAttribute(Computed = "map")] out UInt16 values) { throw new NotImplementedException(); } + public static void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the specified pixel map @@ -46964,7 +46964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMap(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute, CountAttribute(Computed = "map")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// /// @@ -46972,7 +46972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new NotImplementedException(); } + public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -46980,7 +46980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new NotImplementedException(); } + public static void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -46988,7 +46988,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")] [CLSCompliant(false)] - public static unsafe void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetPixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47000,7 +47000,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3", Version = "1.1", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47015,7 +47015,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47030,7 +47030,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47045,7 +47045,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1 or KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -47059,14 +47059,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug|VERSION_1_1|VERSION_4_3|VERSION_4_3", Version = "1.1", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the polygon stipple pattern /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] [CLSCompliant(false)] - public static Byte GetPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the polygon stipple pattern @@ -47076,7 +47076,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] [CLSCompliant(false)] - public static void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte[] mask) { throw new NotImplementedException(); } + public static void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte[] mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the polygon stipple pattern @@ -47086,7 +47086,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] [CLSCompliant(false)] - public static void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] out Byte mask) { throw new NotImplementedException(); } + public static void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] out Byte mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return the polygon stipple pattern @@ -47096,7 +47096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetPolygonStipple")] [CLSCompliant(false)] - public static unsafe void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte* mask) { throw new NotImplementedException(); } + public static unsafe void GetPolygonStipple([OutAttribute, CountAttribute(Computed = "")] Byte* mask) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47118,7 +47118,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47142,7 +47142,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47166,7 +47166,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47190,7 +47190,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47214,7 +47214,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47236,7 +47236,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47260,7 +47260,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47284,7 +47284,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47308,7 +47308,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47332,7 +47332,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47354,7 +47354,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(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47378,7 +47378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47402,7 +47402,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47426,7 +47426,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47450,7 +47450,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47472,7 +47472,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47496,7 +47496,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47520,7 +47520,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47544,7 +47544,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -47568,7 +47568,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -47587,7 +47587,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -47606,7 +47606,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -47625,7 +47625,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -47644,7 +47644,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47663,7 +47663,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47682,7 +47682,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47701,7 +47701,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47720,7 +47720,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(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47739,7 +47739,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(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -47758,7 +47758,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, OpenTK.Graphics.OpenGL.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47774,7 +47774,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47790,7 +47790,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47806,7 +47806,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47823,7 +47823,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47840,7 +47840,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47857,7 +47857,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetProgramParameterName overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47873,7 +47873,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47889,7 +47889,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47905,7 +47905,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47922,7 +47922,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(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47939,7 +47939,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(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -47956,7 +47956,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetProgramParameterName overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -47976,7 +47976,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -47996,7 +47996,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -48016,7 +48016,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -48036,7 +48036,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -48056,7 +48056,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -48076,7 +48076,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48092,7 +48092,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48108,7 +48108,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48124,7 +48124,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48140,7 +48140,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(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48156,7 +48156,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(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -48172,7 +48172,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the index of a named resource within a program @@ -48188,7 +48188,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, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the index of a named resource within a program @@ -48204,7 +48204,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(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48224,7 +48224,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48243,7 +48243,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48263,7 +48263,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48283,7 +48283,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48303,7 +48303,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48322,7 +48322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48342,7 +48342,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -48362,7 +48362,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the location of a named resource within a program @@ -48378,7 +48378,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, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the location of a named resource within a program @@ -48394,7 +48394,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(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the fragment color index of a named variable within a program @@ -48410,7 +48410,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, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the fragment color index of a named variable within a program @@ -48426,7 +48426,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(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48452,7 +48452,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48478,7 +48478,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48504,7 +48504,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48530,7 +48530,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48556,7 +48556,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -48582,7 +48582,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -48601,7 +48601,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, CountAttribute(Count = 1)] out Int32 values) { throw new NotImplementedException(); } + public static void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -48620,7 +48620,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -48639,7 +48639,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] out Int32 values) { throw new NotImplementedException(); } + public static void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -48658,7 +48658,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -48667,7 +48667,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new NotImplementedException(); } + public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -48676,7 +48676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new NotImplementedException(); } + public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48695,7 +48695,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48714,7 +48714,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48733,7 +48733,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48752,7 +48752,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, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48771,7 +48771,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, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -48790,7 +48790,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -48806,7 +48806,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -48822,7 +48822,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -48838,7 +48838,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48854,7 +48854,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48870,7 +48870,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48886,7 +48886,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48902,7 +48902,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48918,7 +48918,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -48934,7 +48934,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -48950,7 +48950,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -48966,7 +48966,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -48982,7 +48982,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -48998,7 +48998,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49014,7 +49014,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49030,7 +49030,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -49046,7 +49046,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -49062,7 +49062,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -49078,7 +49078,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49094,7 +49094,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49110,7 +49110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -49126,7 +49126,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -49142,7 +49142,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -49158,7 +49158,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -49174,7 +49174,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49191,7 +49191,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49208,7 +49208,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49225,7 +49225,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49241,7 +49241,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49257,7 +49257,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49273,7 +49273,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49290,7 +49290,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49307,7 +49307,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterfv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49324,7 +49324,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49340,7 +49340,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49356,7 +49356,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49372,7 +49372,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49380,7 +49380,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49388,7 +49388,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49396,7 +49396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49405,7 +49405,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49414,7 +49414,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49423,7 +49423,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49431,7 +49431,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49439,7 +49439,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49447,7 +49447,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49456,7 +49456,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49465,7 +49465,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49474,7 +49474,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49482,7 +49482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49490,7 +49490,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49498,7 +49498,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49507,7 +49507,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49516,7 +49516,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameterIuiv")] [CLSCompliant(false)] - public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -49525,7 +49525,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49542,7 +49542,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49559,7 +49559,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49576,7 +49576,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49592,7 +49592,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49608,7 +49608,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49624,7 +49624,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49641,7 +49641,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49658,7 +49658,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGetSamplerParameteriv")] [CLSCompliant(false)] - public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49675,7 +49675,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49691,7 +49691,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49707,7 +49707,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -49723,7 +49723,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49747,7 +49747,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new NotImplementedException(); } + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49776,7 +49776,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49805,7 +49805,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49834,7 +49834,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -49862,7 +49862,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -49881,7 +49881,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -49900,7 +49900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -49919,7 +49919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -49938,7 +49938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -49954,7 +49954,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -49970,7 +49970,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -49986,7 +49986,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -50002,7 +50002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -50018,7 +50018,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -50034,7 +50034,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -50053,7 +50053,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, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -50072,7 +50072,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, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -50091,7 +50091,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL.ShaderType shadertype, OpenTK.Graphics.OpenGL.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -50110,7 +50110,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -50129,7 +50129,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -50148,7 +50148,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -50167,7 +50167,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a string describing the current GL connection @@ -50176,7 +50176,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant, one of Vendor, Renderer, Version, or ShadingLanguageVersion. Additionally, glGetStringi accepts the Extensions token. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.OpenGL.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -50190,7 +50190,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(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringName name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -50204,7 +50204,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, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringName name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -50217,7 +50217,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(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringNameIndexed name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -50230,7 +50230,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, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL.StringNameIndexed name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the index of a subroutine uniform of a given shader stage within a program @@ -50246,7 +50246,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(); } + public static Int32 GetSubroutineIndex(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the index of a subroutine uniform of a given shader stage within a program @@ -50262,7 +50262,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static Int32 GetSubroutineIndex(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the location of a subroutine uniform of a given shader stage within a program @@ -50278,7 +50278,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(); } + public static Int32 GetSubroutineUniformLocation(Int32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the location of a subroutine uniform of a given shader stage within a program @@ -50294,7 +50294,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static Int32 GetSubroutineUniformLocation(UInt32 program, OpenTK.Graphics.OpenGL.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50317,7 +50317,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50340,7 +50340,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50363,7 +50363,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 unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50385,7 +50385,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50407,7 +50407,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -50429,7 +50429,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50445,7 +50445,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50461,7 +50461,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50477,7 +50477,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50493,7 +50493,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50509,7 +50509,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture environment parameters @@ -50525,7 +50525,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50541,7 +50541,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, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50557,7 +50557,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, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50573,7 +50573,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50589,7 +50589,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50605,7 +50605,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50621,7 +50621,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50637,7 +50637,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50653,7 +50653,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Return texture coordinate generation parameters @@ -50669,7 +50669,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50690,7 +50690,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the texture image. Should be a pointer to an array of the type specified by type. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] - public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50714,7 +50714,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T4[] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50738,7 +50738,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T4[,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50762,7 +50762,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T4[,,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -50785,7 +50785,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] public static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T4 pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50804,7 +50804,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50823,7 +50823,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50842,7 +50842,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50861,7 +50861,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50880,7 +50880,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -50899,7 +50899,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -50915,7 +50915,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -50931,7 +50931,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -50947,7 +50947,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50955,7 +50955,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50963,7 +50963,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50971,7 +50971,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50979,7 +50979,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50987,7 +50987,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -50995,7 +50995,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -51011,7 +51011,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -51027,7 +51027,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -51043,7 +51043,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51054,7 +51054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureImage")] [CLSCompliant(false)] - public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51067,7 +51067,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51080,7 +51080,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51093,7 +51093,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51106,7 +51106,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51117,7 +51117,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureImage")] [CLSCompliant(false)] - public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51130,7 +51130,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51143,7 +51143,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51156,7 +51156,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51169,7 +51169,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51178,7 +51178,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51187,7 +51187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51196,7 +51196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51205,7 +51205,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51214,7 +51214,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51223,7 +51223,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51232,7 +51232,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51241,7 +51241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51250,7 +51250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51259,7 +51259,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51268,7 +51268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51277,7 +51277,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51285,7 +51285,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51293,7 +51293,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51301,7 +51301,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51309,7 +51309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51317,7 +51317,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51325,7 +51325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51333,7 +51333,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51341,7 +51341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51349,7 +51349,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51357,7 +51357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51365,7 +51365,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51373,7 +51373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51381,7 +51381,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51389,7 +51389,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51397,7 +51397,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51405,7 +51405,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51413,7 +51413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51421,7 +51421,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51429,7 +51429,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51437,7 +51437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51445,7 +51445,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51462,7 +51462,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureSubImage")] [CLSCompliant(false)] - public static void GetTextureSubImage(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, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureSubImage(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, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51481,7 +51481,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51500,7 +51500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51519,7 +51519,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51538,7 +51538,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51555,7 +51555,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureSubImage")] [CLSCompliant(false)] - public static void GetTextureSubImage(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, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureSubImage(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, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51574,7 +51574,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51593,7 +51593,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51612,7 +51612,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -51631,7 +51631,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51640,7 +51640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51649,7 +51649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51658,7 +51658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51667,7 +51667,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51676,7 +51676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51685,7 +51685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51694,7 +51694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51703,7 +51703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51712,7 +51712,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51721,7 +51721,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51730,7 +51730,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51739,7 +51739,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51747,7 +51747,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51755,7 +51755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51763,7 +51763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51771,7 +51771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51779,7 +51779,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -51787,7 +51787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51815,7 +51815,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51843,7 +51843,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51871,7 +51871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51899,7 +51899,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51927,7 +51927,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51955,7 +51955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -51983,7 +51983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -52011,7 +52011,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52024,7 +52024,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, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52037,7 +52037,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(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52053,7 +52053,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, CountAttribute(Computed = "program,location")] Double[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52069,7 +52069,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, CountAttribute(Computed = "program,location")] out Double @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52085,7 +52085,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "program,location")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52101,7 +52101,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(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52117,7 +52117,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(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -52133,7 +52133,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "program,location")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52149,7 +52149,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, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52165,7 +52165,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, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52181,7 +52181,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52197,7 +52197,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52213,7 +52213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52229,7 +52229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52248,7 +52248,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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52267,7 +52267,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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52286,7 +52286,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52305,7 +52305,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(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52324,7 +52324,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(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -52343,7 +52343,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52359,7 +52359,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, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52375,7 +52375,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, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52391,7 +52391,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52407,7 +52407,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52423,7 +52423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -52439,7 +52439,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of a uniform variable @@ -52452,7 +52452,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(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of a uniform variable @@ -52465,7 +52465,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -52481,7 +52481,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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -52497,7 +52497,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -52513,7 +52513,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, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -52529,7 +52529,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -52545,7 +52545,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -52561,7 +52561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -52577,7 +52577,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52586,7 +52586,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52595,7 +52595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52604,7 +52604,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52613,7 +52613,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52622,7 +52622,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52631,7 +52631,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52640,7 +52640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52649,7 +52649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52658,7 +52658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52667,7 +52667,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52676,7 +52676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52685,7 +52685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52693,7 +52693,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52701,7 +52701,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52709,7 +52709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static unsafe void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52717,7 +52717,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52725,7 +52725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -52733,7 +52733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static unsafe void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52749,7 +52749,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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52765,7 +52765,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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52781,7 +52781,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52797,7 +52797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52813,7 +52813,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52829,7 +52829,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52845,7 +52845,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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52861,7 +52861,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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52877,7 +52877,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52893,7 +52893,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52909,7 +52909,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52925,7 +52925,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52933,7 +52933,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52941,7 +52941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52949,7 +52949,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52957,7 +52957,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52965,7 +52965,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -52973,7 +52973,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -52989,7 +52989,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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53005,7 +53005,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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53021,7 +53021,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53037,7 +53037,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53053,7 +53053,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -53069,7 +53069,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53077,7 +53077,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53085,7 +53085,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53093,7 +53093,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53101,7 +53101,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53109,7 +53109,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -53117,7 +53117,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53133,7 +53133,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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53151,7 +53151,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53169,7 +53169,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53187,7 +53187,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53205,7 +53205,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53221,7 +53221,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53239,7 +53239,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53257,7 +53257,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53275,7 +53275,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -53293,7 +53293,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify implementation-specific hints @@ -53305,7 +53305,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.OpenGL.HintTarget target, OpenTK.Graphics.OpenGL.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.OpenGL.HintTarget target, OpenTK.Graphics.OpenGL.HintMode mode) { throw new BindingsNotRewrittenException(); } /// /// Define histogram table @@ -53323,7 +53323,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glHistogram")] - public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53332,7 +53332,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexd")] - public static void Index(Double c) { throw new NotImplementedException(); } + public static void Index(Double c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53342,7 +53342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexdv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Double* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Double* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53351,7 +53351,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexf")] - public static void Index(Single c) { throw new NotImplementedException(); } + public static void Index(Single c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53361,7 +53361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexfv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Single* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Single* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53370,7 +53370,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexi")] - public static void Index(Int32 c) { throw new NotImplementedException(); } + public static void Index(Int32 c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53380,7 +53380,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexiv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Int32* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Int32* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the writing of individual bits in the color index buffers @@ -53390,7 +53390,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(); } + public static void IndexMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the writing of individual bits in the color index buffers @@ -53400,7 +53400,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexMask")] [CLSCompliant(false)] - public static void IndexMask(UInt32 mask) { throw new NotImplementedException(); } + public static void IndexMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53415,7 +53415,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first index in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexPointer")] - public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53433,7 +53433,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53451,7 +53451,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53469,7 +53469,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of color indexes @@ -53486,7 +53486,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexPointer")] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53495,7 +53495,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexs")] - public static void Index(Int16 c) { throw new NotImplementedException(); } + public static void Index(Int16 c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current color index @@ -53505,7 +53505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIndexsv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Int16* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Int16* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set the current color index @@ -53514,7 +53514,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the current color index. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexub")] - public static void Index(Byte c) { throw new NotImplementedException(); } + public static void Index(Byte c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set the current color index @@ -53524,13 +53524,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIndexubv")] [CLSCompliant(false)] - public static unsafe void Index([CountAttribute(Count = 1)] Byte* c) { throw new NotImplementedException(); } + public static unsafe void Index([CountAttribute(Count = 1)] Byte* c) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Initialize the name stack /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glInitNames")] - public static void InitNames() { throw new NotImplementedException(); } + public static void InitNames() { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53543,7 +53543,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,stride)] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glInterleavedArrays")] - public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [CountAttribute(Computed = "format,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [CountAttribute(Computed = "format,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53559,7 +53559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "format,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53575,7 +53575,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "format,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53591,7 +53591,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "format,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Simultaneously specify and enable several interleaved arrays @@ -53606,7 +53606,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glInterleavedArrays")] public static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "format,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -53616,7 +53616,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(); } + public static void InvalidateBufferData(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -53626,7 +53626,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] [CLSCompliant(false)] - public static void InvalidateBufferData(UInt32 buffer) { throw new NotImplementedException(); } + public static void InvalidateBufferData(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -53642,7 +53642,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, Int32 length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -53658,7 +53658,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(); } + public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -53674,7 +53674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -53690,7 +53690,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -53706,7 +53706,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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -53722,7 +53722,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, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -53738,7 +53738,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53746,7 +53746,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53754,7 +53754,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53762,7 +53762,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53770,7 +53770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53778,7 +53778,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53786,7 +53786,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53798,7 +53798,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53810,7 +53810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53822,7 +53822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53834,7 +53834,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53846,7 +53846,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -53858,7 +53858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -53886,7 +53886,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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -53914,7 +53914,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, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -53942,7 +53942,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the entirety a texture image @@ -53955,7 +53955,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(); } + public static void InvalidateTexImage(Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the entirety a texture image @@ -53968,7 +53968,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void InvalidateTexImage(UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a texture image @@ -53999,7 +53999,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(); } + public static void InvalidateTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a texture image @@ -54030,7 +54030,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void InvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a buffer object @@ -54040,7 +54040,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(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a buffer object @@ -54050,7 +54050,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Test whether a capability is enabled @@ -54059,7 +54059,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Test whether a capability is enabled @@ -54072,7 +54072,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(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Test whether a capability is enabled @@ -54085,7 +54085,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, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a framebuffer object @@ -54095,7 +54095,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(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a framebuffer object @@ -54105,7 +54105,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Determine if a name corresponds to a display list @@ -54115,7 +54115,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(); } + public static bool IsList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Determine if a name corresponds to a display list @@ -54125,7 +54125,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsList")] [CLSCompliant(false)] - public static bool IsList(UInt32 list) { throw new NotImplementedException(); } + public static bool IsList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a program object @@ -54135,7 +54135,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(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a program object @@ -54145,7 +54145,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Determine if a name corresponds to a program pipeline object @@ -54155,7 +54155,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(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Determine if a name corresponds to a program pipeline object @@ -54165,7 +54165,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(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a query object @@ -54175,7 +54175,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(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a query object @@ -54185,7 +54185,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a renderbuffer object @@ -54195,7 +54195,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(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a renderbuffer object @@ -54205,7 +54205,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Determine if a name corresponds to a sampler object @@ -54215,7 +54215,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(); } + public static bool IsSampler(Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Determine if a name corresponds to a sampler object @@ -54225,7 +54225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a shader object @@ -54235,7 +54235,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(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a shader object @@ -54245,7 +54245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Determine if a name corresponds to a sync object @@ -54254,7 +54254,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glIsSync")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Determine if a name corresponds to a texture @@ -54264,7 +54264,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(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Determine if a name corresponds to a texture @@ -54274,7 +54274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Determine if a name corresponds to a transform feedback object @@ -54284,7 +54284,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(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Determine if a name corresponds to a transform feedback object @@ -54294,7 +54294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -54304,7 +54304,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(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -54314,7 +54314,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(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54329,7 +54329,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter pname of light source light will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightf")] - public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54345,7 +54345,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54361,7 +54361,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54376,7 +54376,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter pname of light source light will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLighti")] - public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54392,7 +54392,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set light source parameters @@ -54408,7 +54408,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Light(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54420,7 +54420,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that param will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModelf")] - public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single param) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54433,7 +54433,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54446,7 +54446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModelfv")] [CLSCompliant(false)] - public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54458,7 +54458,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that param will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModeli")] - public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54471,7 +54471,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the lighting model parameters @@ -54484,7 +54484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLightModeliv")] [CLSCompliant(false)] - public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void LightModel(OpenTK.Graphics.OpenGL.LightModelParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the line stipple pattern @@ -54497,7 +54497,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(); } + public static void LineStipple(Int32 factor, Int16 pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the line stipple pattern @@ -54510,7 +54510,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineStipple")] [CLSCompliant(false)] - public static void LineStipple(Int32 factor, UInt16 pattern) { throw new NotImplementedException(); } + public static void LineStipple(Int32 factor, UInt16 pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the width of rasterized lines @@ -54519,7 +54519,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Links a program object @@ -54529,7 +54529,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(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Links a program object @@ -54539,7 +54539,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the display-list base for glCallLists @@ -54549,7 +54549,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(); } + public static void ListBase(Int32 @base) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the display-list base for glCallLists @@ -54559,13 +54559,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glListBase")] [CLSCompliant(false)] - public static void ListBase(UInt32 @base) { throw new NotImplementedException(); } + public static void ListBase(UInt32 @base) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the identity matrix /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadIdentity")] - public static void LoadIdentity() { throw new NotImplementedException(); } + public static void LoadIdentity() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54575,7 +54575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54585,7 +54585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54595,7 +54595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixd")] [CLSCompliant(false)] - public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54605,7 +54605,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54615,7 +54615,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static void LoadMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void LoadMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Replace the current matrix with the specified matrix @@ -54625,7 +54625,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")] [CLSCompliant(false)] - public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Load a name onto the name stack @@ -54635,7 +54635,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(); } + public static void LoadName(Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Load a name onto the name stack @@ -54645,7 +54645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLoadName")] [CLSCompliant(false)] - public static void LoadName(UInt32 name) { throw new NotImplementedException(); } + public static void LoadName(UInt32 name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54655,7 +54655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54665,7 +54665,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54675,7 +54675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixd")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54685,7 +54685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54695,7 +54695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] [CLSCompliant(false)] - public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Replace the current matrix with the specified row-major ordered matrix @@ -54705,7 +54705,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glLoadTransposeMatrixf")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a logical pixel operation for rendering @@ -54714,7 +54714,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: Clear, Set, Copy, CopyInverted, Noop, Invert, And, Nand, Or, Nor, Xor, Equiv, AndReverse, AndInverted, OrReverse, and OrInverted. The initial value is Copy. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLogicOp")] - public static void LogicOp(OpenTK.Graphics.OpenGL.LogicOp opcode) { throw new NotImplementedException(); } + public static void LogicOp(OpenTK.Graphics.OpenGL.LogicOp opcode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54739,7 +54739,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, [CountAttribute(Computed = "target,stride,order")] Double[] points) { throw new NotImplementedException(); } + public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54764,7 +54764,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, [CountAttribute(Computed = "target,stride,order")] ref Double points) { throw new NotImplementedException(); } + public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54789,7 +54789,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "target,stride,order")] Double* points) { throw new NotImplementedException(); } + public static unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54814,7 +54814,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, [CountAttribute(Computed = "target,stride,order")] Single[] points) { throw new NotImplementedException(); } + public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54839,7 +54839,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, [CountAttribute(Computed = "target,stride,order")] ref Single points) { throw new NotImplementedException(); } + public static void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one-dimensional evaluator @@ -54864,7 +54864,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "target,stride,order")] Single* points) { throw new NotImplementedException(); } + public static unsafe void Map1(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, [CountAttribute(Computed = "target,stride,order")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -54901,7 +54901,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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double[] points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -54938,7 +54938,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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] ref Double points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -54975,7 +54975,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -55012,7 +55012,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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single[] points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -55049,7 +55049,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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] ref Single points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a two-dimensional evaluator @@ -55086,7 +55086,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Map a buffer object's data store @@ -55098,7 +55098,7 @@ namespace OpenTK.Graphics.OpenGL /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glMapBuffer")] - public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Map a section of a buffer object's data store @@ -55116,7 +55116,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Map a section of a buffer object's data store @@ -55134,7 +55134,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one- or two-dimensional mesh @@ -55149,7 +55149,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the mappings for integer grid domain values i = 0 and i = un. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMapGrid1d")] - public static void MapGrid1(Int32 un, Double u1, Double u2) { throw new NotImplementedException(); } + public static void MapGrid1(Int32 un, Double u1, Double u2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one- or two-dimensional mesh @@ -55164,7 +55164,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the mappings for integer grid domain values i = 0 and i = un. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMapGrid1f")] - public static void MapGrid1(Int32 un, Single u1, Single u2) { throw new NotImplementedException(); } + public static void MapGrid1(Int32 un, Single u1, Single u2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one- or two-dimensional mesh @@ -55188,7 +55188,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the mappings for integer grid domain values j = 0 and j = vn (glMapGrid2 only). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMapGrid2d")] - public static void MapGrid2(Int32 un, Double u1, Double u2, Int32 vn, Double v1, Double v2) { throw new NotImplementedException(); } + public static void MapGrid2(Int32 un, Double u1, Double u2, Int32 vn, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Define a one- or two-dimensional mesh @@ -55212,21 +55212,21 @@ namespace OpenTK.Graphics.OpenGL /// Specify the mappings for integer grid domain values j = 0 and j = vn (glMapGrid2 only). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMapGrid2f")] - public static void MapGrid2(Int32 un, Single u1, Single u2, Int32 vn, Single v1, Single v2) { throw new NotImplementedException(); } + public static void MapGrid2(Int32 un, Single u1, Single u2, Int32 vn, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBuffer")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBuffer")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -55235,7 +55235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -55244,7 +55244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -55253,7 +55253,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -55262,7 +55262,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55277,7 +55277,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter Shininess will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMaterialf")] - public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55293,7 +55293,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55309,7 +55309,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55324,7 +55324,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that parameter Shininess will be set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMateriali")] - public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55340,7 +55340,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify material parameters for the lighting model @@ -55356,7 +55356,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Material(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify which matrix is the current matrix @@ -55365,7 +55365,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies which matrix stack is the target for subsequent matrix operations. Three values are accepted: Modelview, Projection, and Texture. The initial value is Modelview. Additionally, if the ARB_imaging extension is supported, Color is also accepted. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMatrixMode")] - public static void MatrixMode(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixMode(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Defines a barrier ordering memory transactions @@ -55374,12 +55374,12 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the barriers to insert. Must be a bitwise combination of VertexAttribArrayBarrierBit, ElementArrayBarrierBit, UniformBarrierBit, TextureFetchBarrierBit, ShaderImageAccessBarrierBit, CommandBarrierBit, PixelBufferBarrierBit, TextureUpdateBarrierBit, BufferUpdateBarrierBit, FramebufferBarrierBit, TransformFeedbackBarrierBit, AtomicCounterBarrierBit, or ShaderStorageBarrierBit. If the special value AllBarrierBits is specified, all supported barriers will be inserted. /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glMemoryBarrier")] - public static void MemoryBarrier(OpenTK.Graphics.OpenGL.MemoryBarrierFlags barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(OpenTK.Graphics.OpenGL.MemoryBarrierFlags barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_ES3_1_compatibility|VERSION_4_5] /// [AutoGenerated(Category = "ARB_ES3_1_compatibility|VERSION_4_5", Version = "4.5", EntryPoint = "glMemoryBarrierByRegion")] - public static void MemoryBarrierByRegion(OpenTK.Graphics.OpenGL.MemoryBarrierRegionFlags barriers) { throw new NotImplementedException(); } + public static void MemoryBarrierByRegion(OpenTK.Graphics.OpenGL.MemoryBarrierRegionFlags barriers) { throw new BindingsNotRewrittenException(); } /// /// Define minmax table @@ -55394,7 +55394,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glMinmax")] - public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specifies minimum rate at which sample shaing takes place @@ -55403,7 +55403,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glMinSampleShading")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55423,7 +55423,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, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55443,7 +55443,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, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55463,7 +55463,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55482,7 +55482,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, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55501,7 +55501,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, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -55520,7 +55520,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55538,7 +55538,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55559,7 +55559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55580,7 +55580,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55601,7 +55601,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -55621,7 +55621,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55630,7 +55630,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawArraysIndirectCount")] - public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55642,7 +55642,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55654,7 +55654,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55666,7 +55666,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -55677,7 +55677,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawArraysIndirectCount")] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55700,7 +55700,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, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55725,7 +55725,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55750,7 +55750,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55775,7 +55775,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55800,7 +55800,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55823,7 +55823,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, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55848,7 +55848,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55873,7 +55873,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55898,7 +55898,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55923,7 +55923,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55946,7 +55946,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55971,7 +55971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -55996,7 +55996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56021,7 +56021,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56046,7 +56046,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56068,7 +56068,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, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56092,7 +56092,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56116,7 +56116,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56140,7 +56140,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56164,7 +56164,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56186,7 +56186,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, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56210,7 +56210,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56234,7 +56234,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56258,7 +56258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56282,7 +56282,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56304,7 +56304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56328,7 +56328,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56352,7 +56352,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56376,7 +56376,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -56400,7 +56400,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56426,7 +56426,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, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56454,7 +56454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56482,7 +56482,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56510,7 +56510,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56538,7 +56538,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56564,7 +56564,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, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56592,7 +56592,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56620,7 +56620,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56648,7 +56648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56676,7 +56676,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56702,7 +56702,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 unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56730,7 +56730,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56758,7 +56758,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56786,7 +56786,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56814,7 +56814,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56839,7 +56839,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, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56866,7 +56866,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56893,7 +56893,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56920,7 +56920,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56947,7 +56947,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56972,7 +56972,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, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -56999,7 +56999,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57026,7 +57026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57053,7 +57053,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57080,7 +57080,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57105,7 +57105,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57132,7 +57132,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57159,7 +57159,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57186,7 +57186,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -57213,7 +57213,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57234,7 +57234,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57258,7 +57258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57282,7 +57282,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57306,7 +57306,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -57329,7 +57329,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57339,7 +57339,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawElementsIndirectCount")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57352,7 +57352,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57365,7 +57365,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57378,7 +57378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -57390,7 +57390,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawElementsIndirectCount")] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.Version46 type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57402,7 +57402,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1d")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Double s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57415,7 +57415,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1dv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57427,7 +57427,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1f")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Single s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57440,7 +57440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1fv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57452,7 +57452,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1i")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57465,7 +57465,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1iv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57477,7 +57477,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1s")] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57490,7 +57490,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord1sv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57505,7 +57505,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2d")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57518,7 +57518,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, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57531,7 +57531,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, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57544,7 +57544,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2dv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57559,7 +57559,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2f")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57572,7 +57572,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, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57585,7 +57585,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, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57598,7 +57598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2fv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57613,7 +57613,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2i")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57626,7 +57626,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, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57639,7 +57639,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, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57652,7 +57652,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2iv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57667,7 +57667,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2s")] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57680,7 +57680,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, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57693,7 +57693,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, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57706,7 +57706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord2sv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57724,7 +57724,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3d")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57737,7 +57737,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, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57750,7 +57750,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, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57763,7 +57763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3dv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57781,7 +57781,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3f")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57794,7 +57794,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, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57807,7 +57807,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, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57820,7 +57820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3fv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57838,7 +57838,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3i")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57851,7 +57851,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, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57864,7 +57864,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, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57877,7 +57877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3iv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57895,7 +57895,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3s")] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57908,7 +57908,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, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57921,7 +57921,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, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57934,7 +57934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord3sv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57955,7 +57955,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4d")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57968,7 +57968,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, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57981,7 +57981,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, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -57994,7 +57994,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4dv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58015,7 +58015,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4f")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58028,7 +58028,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, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58041,7 +58041,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, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58054,7 +58054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4fv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58075,7 +58075,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4i")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58088,7 +58088,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, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58101,7 +58101,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, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58114,7 +58114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4iv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58135,7 +58135,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4s")] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58148,7 +58148,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, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58161,7 +58161,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, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Set the current texture coordinates @@ -58174,7 +58174,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultiTexCoord4sv")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58182,7 +58182,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58190,7 +58190,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58198,7 +58198,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58206,7 +58206,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58214,7 +58214,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58222,7 +58222,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58230,7 +58230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58238,7 +58238,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58246,7 +58246,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58254,7 +58254,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58262,7 +58262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58270,7 +58270,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58278,7 +58278,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58286,7 +58286,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58294,7 +58294,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -58302,7 +58302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL.TextureUnit texture, OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58312,7 +58312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58322,7 +58322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58332,7 +58332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixd")] [CLSCompliant(false)] - public static unsafe void MultMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58342,7 +58342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58352,7 +58352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static void MultMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MultMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with the specified matrix @@ -58362,7 +58362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")] [CLSCompliant(false)] - public static unsafe void MultMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58372,7 +58372,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58382,7 +58382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58392,7 +58392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixd")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58402,7 +58402,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58412,7 +58412,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] [CLSCompliant(false)] - public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MultTransposeMatrix([CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3][deprecated: v3.2] /// Multiply the current matrix with the specified row-major ordered matrix @@ -58422,7 +58422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glMultTransposeMatrixf")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrix([CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58431,7 +58431,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58442,7 +58442,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58453,7 +58453,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58464,7 +58464,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58475,7 +58475,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58484,7 +58484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58495,7 +58495,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58506,7 +58506,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58517,7 +58517,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58528,7 +58528,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58537,7 +58537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58548,7 +58548,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58559,7 +58559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58570,7 +58570,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58581,7 +58581,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58590,7 +58590,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58601,7 +58601,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58612,7 +58612,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58623,7 +58623,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58634,7 +58634,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58643,7 +58643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58654,7 +58654,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58665,7 +58665,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58676,7 +58676,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58687,7 +58687,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58696,7 +58696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58707,7 +58707,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58718,7 +58718,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58729,7 +58729,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58740,7 +58740,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58749,7 +58749,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58760,7 +58760,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58771,7 +58771,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58782,7 +58782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58793,7 +58793,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58802,7 +58802,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58813,7 +58813,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58824,7 +58824,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58835,7 +58835,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58846,7 +58846,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58855,7 +58855,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58866,7 +58866,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58877,7 +58877,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58888,7 +58888,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58899,7 +58899,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58908,7 +58908,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58919,7 +58919,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58930,7 +58930,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58941,7 +58941,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58952,7 +58952,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58961,7 +58961,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58972,7 +58972,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58983,7 +58983,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -58994,7 +58994,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59005,7 +59005,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59014,7 +59014,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59025,7 +59025,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59036,7 +59036,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59047,7 +59047,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59058,21 +59058,21 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59080,7 +59080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59088,7 +59088,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59096,7 +59096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59104,7 +59104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59112,7 +59112,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59120,7 +59120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59128,7 +59128,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferParameteri")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59136,21 +59136,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferParameteri")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferReadBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new NotImplementedException(); } + public static void NamedFramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferReadBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new NotImplementedException(); } + public static void NamedFramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59159,7 +59159,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59168,7 +59168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59177,7 +59177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTexture")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59186,7 +59186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTexture")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59196,7 +59196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTextureLayer")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59206,7 +59206,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTextureLayer")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59215,7 +59215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorage")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59224,7 +59224,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorage")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59234,7 +59234,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorageMultisample")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -59244,7 +59244,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorageMultisample")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Create or replace a display list @@ -59257,7 +59257,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(); } + public static void NewList(Int32 list, OpenTK.Graphics.OpenGL.ListMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Create or replace a display list @@ -59270,7 +59270,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NewList(UInt32 list, OpenTK.Graphics.OpenGL.ListMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59286,7 +59286,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(); } + public static void Normal3(Byte nx, Byte ny, Byte nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59302,7 +59302,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Normal3(SByte nx, SByte ny, SByte nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59312,7 +59312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59322,7 +59322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59332,7 +59332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59342,7 +59342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59352,7 +59352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59362,7 +59362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3bv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59377,7 +59377,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3d")] - public static void Normal3(Double nx, Double ny, Double nz) { throw new NotImplementedException(); } + public static void Normal3(Double nx, Double ny, Double nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59387,7 +59387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59397,7 +59397,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59407,7 +59407,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3dv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59422,7 +59422,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3f")] - public static void Normal3(Single nx, Single ny, Single nz) { throw new NotImplementedException(); } + public static void Normal3(Single nx, Single ny, Single nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59432,7 +59432,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59442,7 +59442,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59452,7 +59452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3fv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59467,7 +59467,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3i")] - public static void Normal3(Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void Normal3(Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59477,7 +59477,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59487,7 +59487,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59497,7 +59497,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3iv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59512,7 +59512,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1). /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3s")] - public static void Normal3(Int16 nx, Int16 ny, Int16 nz) { throw new NotImplementedException(); } + public static void Normal3(Int16 nx, Int16 ny, Int16 nz) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59522,7 +59522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59532,7 +59532,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] [CLSCompliant(false)] - public static void Normal3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Normal3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current normal vector @@ -59542,35 +59542,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glNormal3sv")] [CLSCompliant(false)] - public static unsafe void Normal3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Normal3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59585,7 +59585,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glNormalPointer")] - public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59603,7 +59603,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59621,7 +59621,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59639,7 +59639,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of normals @@ -59656,7 +59656,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glNormalPointer")] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a named object identified within a namespace @@ -59675,7 +59675,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, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a named object identified within a namespace @@ -59694,7 +59694,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, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59709,7 +59709,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59727,7 +59727,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59745,7 +59745,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59763,7 +59763,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -59780,7 +59780,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix with an orthographic matrix @@ -59804,7 +59804,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glOrtho")] - public static void Ortho(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void Ortho(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Place a marker in the feedback buffer @@ -59813,7 +59813,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a marker value to be placed in the feedback buffer following a PassThroughToken. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPassThrough")] - public static void PassThrough(Single token) { throw new NotImplementedException(); } + public static void PassThrough(Single token) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -59826,7 +59826,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, [CountAttribute(Computed = "pname")] Single[] values) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -59839,7 +59839,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, [CountAttribute(Computed = "pname")] ref Single values) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -59852,7 +59852,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* values) { throw new NotImplementedException(); } + public static unsafe void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -59864,13 +59864,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameteri")] - public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterInt pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL.PatchParameterInt pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Pause transform feedback operations /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glPauseTransformFeedback")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59886,7 +59886,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, [CountAttribute(Parameter = "mapsize")] Single[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59902,7 +59902,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, [CountAttribute(Parameter = "mapsize")] ref Single values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59918,7 +59918,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapfv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59934,7 +59934,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, [CountAttribute(Parameter = "mapsize")] Int32[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59950,7 +59950,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, [CountAttribute(Parameter = "mapsize")] ref Int32 values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59966,7 +59966,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59982,7 +59982,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, [CountAttribute(Parameter = "mapsize")] UInt32[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -59998,7 +59998,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, [CountAttribute(Parameter = "mapsize")] ref UInt32 values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60014,7 +60014,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60030,7 +60030,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, [CountAttribute(Parameter = "mapsize")] Int16[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60046,7 +60046,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, [CountAttribute(Parameter = "mapsize")] ref Int16 values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60062,7 +60062,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int16* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60078,7 +60078,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, [CountAttribute(Parameter = "mapsize")] UInt16[] values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60094,7 +60094,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, [CountAttribute(Parameter = "mapsize")] ref UInt16 values) { throw new NotImplementedException(); } + public static void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] ref UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set up pixel transfer maps @@ -60110,7 +60110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelMapusv")] [CLSCompliant(false)] - public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void PixelMap(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, [CountAttribute(Parameter = "mapsize")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// /// @@ -60118,7 +60118,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new NotImplementedException(); } + public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// /// @@ -60126,7 +60126,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new NotImplementedException(); } + public static void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] ref Int32 values) { throw new BindingsNotRewrittenException(); } /// /// @@ -60134,7 +60134,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")] [CLSCompliant(false)] - public static unsafe void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void PixelMapx(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [CountAttribute(Parameter = "size")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -60146,7 +60146,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelStoref")] - public static void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Single param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -60158,13 +60158,13 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelStorex")] - public static void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set pixel transfer modes @@ -60176,7 +60176,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelTransferf")] - public static void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Single param) { throw new NotImplementedException(); } + public static void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set pixel transfer modes @@ -60188,7 +60188,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelTransferi")] - public static void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTransfer(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the pixel zoom factors @@ -60200,7 +60200,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the and zoom factors for pixel write operations. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelZoom")] - public static void PixelZoom(Single xfactor, Single yfactor) { throw new NotImplementedException(); } + public static void PixelZoom(Single xfactor, Single yfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60212,7 +60212,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterf")] - public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60225,7 +60225,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60238,7 +60238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60250,7 +60250,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteri")] - public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60263,7 +60263,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -60276,7 +60276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the diameter of rasterized points @@ -60285,7 +60285,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the diameter of rasterized points. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPointSize")] - public static void PointSize(Single size) { throw new NotImplementedException(); } + public static void PointSize(Single size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select a polygon rasterization mode @@ -60297,7 +60297,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonMode")] - public static void PolygonMode(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Set the scale and units used to calculate depth values @@ -60309,14 +60309,14 @@ namespace OpenTK.Graphics.OpenGL /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6 or ARB_polygon_offset_clamp|VERSION_4_6] /// /// /// [AutoGenerated(Category = "ARB_polygon_offset_clamp|VERSION_4_6", Version = "4.6", EntryPoint = "glPolygonOffsetClamp")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the polygon stippling pattern @@ -60326,7 +60326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] [CLSCompliant(false)] - public static void PolygonStipple([CountAttribute(Computed = "")] Byte[] mask) { throw new NotImplementedException(); } + public static void PolygonStipple([CountAttribute(Computed = "")] Byte[] mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the polygon stippling pattern @@ -60336,7 +60336,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] [CLSCompliant(false)] - public static void PolygonStipple([CountAttribute(Computed = "")] ref Byte mask) { throw new NotImplementedException(); } + public static void PolygonStipple([CountAttribute(Computed = "")] ref Byte mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the polygon stippling pattern @@ -60346,29 +60346,29 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonStipple")] [CLSCompliant(false)] - public static unsafe void PolygonStipple([CountAttribute(Computed = "")] Byte* mask) { throw new NotImplementedException(); } + public static unsafe void PolygonStipple([CountAttribute(Computed = "")] Byte* mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPopAttrib")] - public static void PopAttrib() { throw new NotImplementedException(); } + public static void PopAttrib() { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPopClientAttrib")] - public static void PopClientAttrib() { throw new NotImplementedException(); } + public static void PopClientAttrib() { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPopMatrix")] - public static void PopMatrix() { throw new NotImplementedException(); } + public static void PopMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPopName")] - public static void PopName() { throw new NotImplementedException(); } + public static void PopName() { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Specify the primitive restart index @@ -60378,7 +60378,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(); } + public static void PrimitiveRestartIndex(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Specify the primitive restart index @@ -60388,7 +60388,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60404,7 +60404,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60420,7 +60420,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60436,7 +60436,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60452,7 +60452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60468,7 +60468,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Set texture residence priority @@ -60484,7 +60484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPrioritizeTextures")] [CLSCompliant(false)] - public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60503,7 +60503,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, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60524,7 +60524,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60545,7 +60545,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60566,7 +60566,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60587,7 +60587,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60606,7 +60606,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(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60627,7 +60627,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60648,7 +60648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60669,7 +60669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -60690,7 +60690,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60707,7 +60707,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60723,7 +60723,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60740,7 +60740,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60757,7 +60757,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1", Version = "4.1", EntryPoint = "glProgramParameteri")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60773,7 +60773,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|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(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -60790,7 +60790,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramParameterName overload instead")] [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|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(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60806,7 +60806,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Double v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60822,7 +60822,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(UInt32 program, Int32 location, Double v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Double v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60841,7 +60841,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, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60860,7 +60860,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, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60879,7 +60879,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60898,7 +60898,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60917,7 +60917,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60936,7 +60936,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60952,7 +60952,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60968,7 +60968,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(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -60987,7 +60987,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, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61006,7 +61006,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, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61025,7 +61025,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61044,7 +61044,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61063,7 +61063,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61082,7 +61082,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61098,7 +61098,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61114,7 +61114,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(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61133,7 +61133,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, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61152,7 +61152,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, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61171,7 +61171,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61190,7 +61190,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61209,7 +61209,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61228,7 +61228,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61244,7 +61244,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61263,7 +61263,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61282,7 +61282,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61301,7 +61301,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61320,7 +61320,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Double v0, Double v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61339,7 +61339,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(UInt32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Double v0, Double v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61358,7 +61358,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, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61377,7 +61377,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, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61396,7 +61396,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61415,7 +61415,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61434,7 +61434,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61453,7 +61453,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61472,7 +61472,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61491,7 +61491,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(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61510,7 +61510,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61529,7 +61529,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61548,7 +61548,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61567,7 +61567,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61586,7 +61586,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61605,7 +61605,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61624,7 +61624,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61643,7 +61643,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(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61662,7 +61662,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61681,7 +61681,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61700,7 +61700,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61719,7 +61719,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61738,7 +61738,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61757,7 +61757,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61776,7 +61776,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61795,7 +61795,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61817,7 +61817,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Double v0, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61839,7 +61839,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(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61858,7 +61858,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, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61877,7 +61877,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, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61896,7 +61896,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61915,7 +61915,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61934,7 +61934,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61953,7 +61953,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61975,7 +61975,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -61997,7 +61997,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(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62016,7 +62016,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62035,7 +62035,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62054,7 +62054,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62073,7 +62073,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62092,7 +62092,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62111,7 +62111,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62133,7 +62133,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62155,7 +62155,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(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62174,7 +62174,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62193,7 +62193,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62212,7 +62212,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62231,7 +62231,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62250,7 +62250,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62269,7 +62269,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62291,7 +62291,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62310,7 +62310,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62329,7 +62329,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62348,7 +62348,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62373,7 +62373,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62398,7 +62398,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(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62417,7 +62417,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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62436,7 +62436,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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62455,7 +62455,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62474,7 +62474,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62493,7 +62493,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62512,7 +62512,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62537,7 +62537,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62562,7 +62562,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(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62581,7 +62581,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62600,7 +62600,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62619,7 +62619,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62638,7 +62638,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62657,7 +62657,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62676,7 +62676,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62701,7 +62701,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62726,7 +62726,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(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62745,7 +62745,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62764,7 +62764,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62783,7 +62783,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62802,7 +62802,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62821,7 +62821,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62840,7 +62840,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62865,7 +62865,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62884,7 +62884,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62903,7 +62903,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -62922,7 +62922,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62932,7 +62932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62942,7 +62942,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62952,7 +62952,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62962,7 +62962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62972,7 +62972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62982,7 +62982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -62992,7 +62992,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63002,7 +63002,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63012,7 +63012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63022,7 +63022,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63032,7 +63032,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63042,7 +63042,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63052,7 +63052,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63062,7 +63062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63072,7 +63072,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63082,7 +63082,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63092,7 +63092,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63102,7 +63102,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63112,7 +63112,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63122,7 +63122,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63132,7 +63132,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63142,7 +63142,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63152,7 +63152,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63162,7 +63162,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63172,7 +63172,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63182,7 +63182,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63192,7 +63192,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63202,7 +63202,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63212,7 +63212,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63222,7 +63222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63232,7 +63232,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63242,7 +63242,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63252,7 +63252,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63262,7 +63262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63272,7 +63272,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63282,7 +63282,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63292,7 +63292,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63302,7 +63302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63312,7 +63312,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63322,7 +63322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63332,7 +63332,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63342,7 +63342,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63352,7 +63352,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63362,7 +63362,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63372,7 +63372,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63382,7 +63382,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63392,7 +63392,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63402,7 +63402,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63412,7 +63412,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63422,7 +63422,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63432,7 +63432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63442,7 +63442,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63452,7 +63452,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63462,7 +63462,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63472,7 +63472,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63482,7 +63482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63492,7 +63492,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63502,7 +63502,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63512,7 +63512,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63522,7 +63522,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63532,7 +63532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63542,7 +63542,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63552,7 +63552,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63562,7 +63562,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63572,7 +63572,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63582,7 +63582,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63592,7 +63592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63602,7 +63602,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63612,7 +63612,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63622,7 +63622,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63632,7 +63632,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63642,7 +63642,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63652,7 +63652,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63662,7 +63662,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63672,7 +63672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63682,7 +63682,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63692,7 +63692,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63702,7 +63702,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63712,7 +63712,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63722,7 +63722,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63732,7 +63732,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63742,7 +63742,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63752,7 +63752,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63762,7 +63762,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63772,7 +63772,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63782,7 +63782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63792,7 +63792,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63802,7 +63802,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63812,7 +63812,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63822,7 +63822,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63832,7 +63832,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63842,7 +63842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63852,7 +63852,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63862,7 +63862,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63872,7 +63872,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63882,7 +63882,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63892,7 +63892,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63902,7 +63902,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63912,7 +63912,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63922,7 +63922,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63932,7 +63932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63942,7 +63942,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63952,7 +63952,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63962,7 +63962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63972,7 +63972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63982,7 +63982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -63992,7 +63992,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -64002,7 +64002,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_provoking_vertex|VERSION_3_2] /// Specifiy the vertex to be used as the source of data for flat shaded varyings @@ -64011,7 +64011,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the vertex to be used as the source of data for flat shaded varyings. /// [AutoGenerated(Category = "ARB_provoking_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glProvokingVertex")] - public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ProvokingVertexMode mode) { throw new NotImplementedException(); } + public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ProvokingVertexMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Push and pop the server attribute stack @@ -64020,7 +64020,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a mask that indicates which attributes to save. Values for mask are listed below. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushAttrib")] - public static void PushAttrib(OpenTK.Graphics.OpenGL.AttribMask mask) { throw new NotImplementedException(); } + public static void PushAttrib(OpenTK.Graphics.OpenGL.AttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Push and pop the client attribute stack @@ -64029,7 +64029,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a mask that indicates which attributes to save. Values for mask are listed below. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPushClientAttrib")] - public static void PushClientAttrib(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void PushClientAttrib(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Push a named debug group into the command stream @@ -64048,7 +64048,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, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSourceExternal source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Push a named debug group into the command stream @@ -64067,13 +64067,13 @@ 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, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.DebugSourceExternal source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Push and pop the current matrix stack /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushMatrix")] - public static void PushMatrix() { throw new NotImplementedException(); } + public static void PushMatrix() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Push and pop the name stack @@ -64083,7 +64083,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(); } + public static void PushName(Int32 name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Push and pop the name stack @@ -64093,7 +64093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPushName")] [CLSCompliant(false)] - public static void PushName(UInt32 name) { throw new NotImplementedException(); } + public static void PushName(UInt32 name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -64106,7 +64106,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(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.OpenGL.QueryCounterTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -64119,7 +64119,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.OpenGL.QueryCounterTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64131,7 +64131,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2d")] - public static void RasterPos2(Double x, Double y) { throw new NotImplementedException(); } + public static void RasterPos2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64141,7 +64141,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64151,7 +64151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64161,7 +64161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2dv")] [CLSCompliant(false)] - public static unsafe void RasterPos2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64173,7 +64173,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2f")] - public static void RasterPos2(Single x, Single y) { throw new NotImplementedException(); } + public static void RasterPos2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64183,7 +64183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64193,7 +64193,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64203,7 +64203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2fv")] [CLSCompliant(false)] - public static unsafe void RasterPos2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64215,7 +64215,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2i")] - public static void RasterPos2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void RasterPos2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64225,7 +64225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64235,7 +64235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64245,7 +64245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2iv")] [CLSCompliant(false)] - public static unsafe void RasterPos2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64257,7 +64257,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2s")] - public static void RasterPos2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void RasterPos2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64267,7 +64267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64277,7 +64277,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] [CLSCompliant(false)] - public static void RasterPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void RasterPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64287,7 +64287,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos2sv")] [CLSCompliant(false)] - public static unsafe void RasterPos2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64302,7 +64302,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3d")] - public static void RasterPos3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void RasterPos3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64312,7 +64312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64322,7 +64322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64332,7 +64332,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3dv")] [CLSCompliant(false)] - public static unsafe void RasterPos3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64347,7 +64347,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3f")] - public static void RasterPos3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void RasterPos3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64357,7 +64357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64367,7 +64367,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64377,7 +64377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3fv")] [CLSCompliant(false)] - public static unsafe void RasterPos3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64392,7 +64392,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3i")] - public static void RasterPos3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void RasterPos3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64402,7 +64402,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64412,7 +64412,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64422,7 +64422,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3iv")] [CLSCompliant(false)] - public static unsafe void RasterPos3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64437,7 +64437,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3s")] - public static void RasterPos3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void RasterPos3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64447,7 +64447,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64457,7 +64457,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] [CLSCompliant(false)] - public static void RasterPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void RasterPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64467,7 +64467,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos3sv")] [CLSCompliant(false)] - public static unsafe void RasterPos3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64485,7 +64485,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4d")] - public static void RasterPos4(Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void RasterPos4(Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64495,7 +64495,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64505,7 +64505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64515,7 +64515,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4dv")] [CLSCompliant(false)] - public static unsafe void RasterPos4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64533,7 +64533,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4f")] - public static void RasterPos4(Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void RasterPos4(Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64543,7 +64543,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64553,7 +64553,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64563,7 +64563,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4fv")] [CLSCompliant(false)] - public static unsafe void RasterPos4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64581,7 +64581,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4i")] - public static void RasterPos4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void RasterPos4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64591,7 +64591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64601,7 +64601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64611,7 +64611,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4iv")] [CLSCompliant(false)] - public static unsafe void RasterPos4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64629,7 +64629,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , , and object coordinates (if present) for the raster position. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4s")] - public static void RasterPos4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void RasterPos4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64639,7 +64639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64649,7 +64649,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] [CLSCompliant(false)] - public static void RasterPos4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void RasterPos4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify the raster position for pixel operations @@ -64659,7 +64659,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRasterPos4sv")] [CLSCompliant(false)] - public static unsafe void RasterPos4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void RasterPos4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select a color buffer source for pixels @@ -64668,7 +64668,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a color buffer. Accepted values are FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and the constants ColorAttachmenti. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.OpenGL.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64680,7 +64680,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64695,7 +64695,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64710,7 +64710,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64725,7 +64725,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -64739,7 +64739,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64766,7 +64766,7 @@ namespace OpenTK.Graphics.OpenGL /// Returns the pixel data. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64796,7 +64796,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64826,7 +64826,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64856,7 +64856,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -64885,7 +64885,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64903,7 +64903,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectd")] - public static void Rect(Double x1, Double y1, Double x2, Double y2) { throw new NotImplementedException(); } + public static void Rect(Double x1, Double y1, Double x2, Double y2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64916,7 +64916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] Double[] v1, [CountAttribute(Count = 2)] Double[] v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] Double[] v1, [CountAttribute(Count = 2)] Double[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64929,7 +64929,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] ref Double v1, [CountAttribute(Count = 2)] ref Double v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] ref Double v1, [CountAttribute(Count = 2)] ref Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64942,7 +64942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectdv")] [CLSCompliant(false)] - public static unsafe void Rect([CountAttribute(Count = 2)] Double* v1, [CountAttribute(Count = 2)] Double* v2) { throw new NotImplementedException(); } + public static unsafe void Rect([CountAttribute(Count = 2)] Double* v1, [CountAttribute(Count = 2)] Double* v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64960,7 +64960,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectf")] - public static void Rect(Single x1, Single y1, Single x2, Single y2) { throw new NotImplementedException(); } + public static void Rect(Single x1, Single y1, Single x2, Single y2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64973,7 +64973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] Single[] v1, [CountAttribute(Count = 2)] Single[] v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] Single[] v1, [CountAttribute(Count = 2)] Single[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64986,7 +64986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] ref Single v1, [CountAttribute(Count = 2)] ref Single v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] ref Single v1, [CountAttribute(Count = 2)] ref Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -64999,7 +64999,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectfv")] [CLSCompliant(false)] - public static unsafe void Rect([CountAttribute(Count = 2)] Single* v1, [CountAttribute(Count = 2)] Single* v2) { throw new NotImplementedException(); } + public static unsafe void Rect([CountAttribute(Count = 2)] Single* v1, [CountAttribute(Count = 2)] Single* v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65017,7 +65017,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the opposite vertex of the rectangle. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRecti")] - public static void Rect(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new NotImplementedException(); } + public static void Rect(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65030,7 +65030,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65043,7 +65043,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65056,7 +65056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectiv")] [CLSCompliant(false)] - public static unsafe void Rect([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new NotImplementedException(); } + public static unsafe void Rect([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// @@ -65064,7 +65064,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRects")] - public static void Rects(Int16 x1, Int16 y1, Int16 x2, Int16 y2) { throw new NotImplementedException(); } + public static void Rects(Int16 x1, Int16 y1, Int16 x2, Int16 y2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65077,7 +65077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] Int16[] v1, [CountAttribute(Count = 2)] Int16[] v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] Int16[] v1, [CountAttribute(Count = 2)] Int16[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65090,7 +65090,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] [CLSCompliant(false)] - public static void Rect([CountAttribute(Count = 2)] ref Int16 v1, [CountAttribute(Count = 2)] ref Int16 v2) { throw new NotImplementedException(); } + public static void Rect([CountAttribute(Count = 2)] ref Int16 v1, [CountAttribute(Count = 2)] ref Int16 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Draw a rectangle @@ -65103,13 +65103,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRectsv")] [CLSCompliant(false)] - public static unsafe void Rect([CountAttribute(Count = 2)] Int16* v1, [CountAttribute(Count = 2)] Int16* v2) { throw new NotImplementedException(); } + public static unsafe void Rect([CountAttribute(Count = 2)] Int16* v1, [CountAttribute(Count = 2)] Int16* v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Release resources consumed by the implementation's shader compiler /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -65127,7 +65127,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -65148,7 +65148,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set rasterization mode @@ -65157,7 +65157,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the rasterization mode. Three values are accepted: Render, Select, and Feedback. The initial value is Render. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRenderMode")] - public static Int32 RenderMode(OpenTK.Graphics.OpenGL.RenderingMode mode) { throw new NotImplementedException(); } + public static Int32 RenderMode(OpenTK.Graphics.OpenGL.RenderingMode mode) { throw new BindingsNotRewrittenException(); } /// /// Reset histogram table entries to zero @@ -65166,7 +65166,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be Histogram. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetHistogram")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target) { throw new NotImplementedException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target) { throw new BindingsNotRewrittenException(); } /// /// Reset minmax table entries to initial values @@ -65175,13 +65175,13 @@ namespace OpenTK.Graphics.OpenGL /// Must be Minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetMinmax")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target) { throw new NotImplementedException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Resume transform feedback operations /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glResumeTransformFeedback")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a rotation matrix @@ -65199,7 +65199,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the x, y, and z coordinates of a vector, respectively. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRotated")] - public static void Rotate(Double angle, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Rotate(Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a rotation matrix @@ -65217,7 +65217,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the x, y, and z coordinates of a vector, respectively. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glRotatef")] - public static void Rotate(Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Rotate(Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify multisample coverage parameters @@ -65229,7 +65229,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Set the value of a sub-word of the sample mask @@ -65242,7 +65242,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 maskNumber, Int32 mask) { throw new NotImplementedException(); } + public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Set the value of a sub-word of the sample mask @@ -65255,7 +65255,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new NotImplementedException(); } + public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65272,7 +65272,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65288,7 +65288,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(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65305,7 +65305,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterf")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Single param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65321,7 +65321,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65338,7 +65338,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65355,7 +65355,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65371,7 +65371,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, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65387,7 +65387,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65404,7 +65404,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterfv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65421,7 +65421,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65437,7 +65437,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65453,7 +65453,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65470,7 +65470,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65486,7 +65486,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(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65503,7 +65503,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteri")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65519,7 +65519,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65528,7 +65528,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65537,7 +65537,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65546,7 +65546,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65554,7 +65554,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65562,7 +65562,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65570,7 +65570,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65579,7 +65579,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65588,7 +65588,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65597,7 +65597,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65605,7 +65605,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65613,7 +65613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65621,7 +65621,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65630,7 +65630,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65639,7 +65639,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameterIuiv")] [CLSCompliant(false)] - public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65648,7 +65648,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.ArbSamplerObjects pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65656,7 +65656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65664,7 +65664,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -65672,7 +65672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65689,7 +65689,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65706,7 +65706,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65722,7 +65722,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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65738,7 +65738,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65755,7 +65755,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glSamplerParameteriv")] [CLSCompliant(false)] - public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65772,7 +65772,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SamplerParameterName overload instead")] [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.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameter pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65788,7 +65788,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -65804,7 +65804,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a general scaling matrix @@ -65819,7 +65819,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify scale factors along the x, y, and z axes, respectively. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glScaled")] - public static void Scale(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Scale(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a general scaling matrix @@ -65834,7 +65834,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify scale factors along the x, y, and z axes, respectively. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glScalef")] - public static void Scale(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Scale(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define the scissor box @@ -65852,7 +65852,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65868,7 +65868,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, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65884,7 +65884,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, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65900,7 +65900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65916,7 +65916,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65932,7 +65932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -65948,7 +65948,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -65970,7 +65970,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(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -65992,7 +65992,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66005,7 +66005,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, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66018,7 +66018,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, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66031,7 +66031,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66044,7 +66044,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66057,7 +66057,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -66070,7 +66070,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66086,7 +66086,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66096,7 +66096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66106,7 +66106,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66116,7 +66116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3bv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66131,7 +66131,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3d")] - public static void SecondaryColor3(Double red, Double green, Double blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Double red, Double green, Double blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66141,7 +66141,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66151,7 +66151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66161,7 +66161,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3dv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66176,7 +66176,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3f")] - public static void SecondaryColor3(Single red, Single green, Single blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Single red, Single green, Single blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66186,7 +66186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66196,7 +66196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66206,7 +66206,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3fv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66221,7 +66221,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3i")] - public static void SecondaryColor3(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66231,7 +66231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66241,7 +66241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66251,7 +66251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3iv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66266,7 +66266,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3s")] - public static void SecondaryColor3(Int16 red, Int16 green, Int16 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Int16 red, Int16 green, Int16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66276,7 +66276,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66286,7 +66286,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66296,7 +66296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3sv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66311,7 +66311,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ub")] - public static void SecondaryColor3(Byte red, Byte green, Byte blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Byte red, Byte green, Byte blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66321,7 +66321,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66331,7 +66331,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66341,7 +66341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3ubv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66357,7 +66357,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66367,7 +66367,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66377,7 +66377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66387,7 +66387,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3uiv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66403,7 +66403,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66413,7 +66413,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] UInt16[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66423,7 +66423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt16 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Set the current secondary color @@ -66433,35 +66433,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColor3usv")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 color) { throw new NotImplementedException(); } + public static void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66479,7 +66479,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColorPointer")] - public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66500,7 +66500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66521,7 +66521,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66542,7 +66542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Define an array of secondary colors @@ -66562,7 +66562,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glSecondaryColorPointer")] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66575,7 +66575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] buffer) { throw new NotImplementedException(); } + public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66588,7 +66588,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 buffer) { throw new NotImplementedException(); } + public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66601,7 +66601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static unsafe void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer) { throw new NotImplementedException(); } + public static unsafe void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66614,7 +66614,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] buffer) { throw new NotImplementedException(); } + public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66627,7 +66627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 buffer) { throw new NotImplementedException(); } + public static void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Establish a buffer for selection mode values @@ -66640,7 +66640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glSelectBuffer")] [CLSCompliant(false)] - public static unsafe void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* buffer) { throw new NotImplementedException(); } + public static unsafe void SelectBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] UInt32* buffer) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66670,7 +66670,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] - 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, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66704,7 +66704,7 @@ namespace OpenTK.Graphics.OpenGL 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, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66738,7 +66738,7 @@ namespace OpenTK.Graphics.OpenGL 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, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66772,7 +66772,7 @@ namespace OpenTK.Graphics.OpenGL 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, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -66805,7 +66805,7 @@ namespace OpenTK.Graphics.OpenGL 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, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Select flat or smooth shading @@ -66814,7 +66814,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic value representing a shading technique. Accepted values are Flat and Smooth. The initial value is Smooth. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glShadeModel")] - public static void ShadeModel(OpenTK.Graphics.OpenGL.ShadingModel mode) { throw new NotImplementedException(); } + public static void ShadeModel(OpenTK.Graphics.OpenGL.ShadingModel mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66836,7 +66836,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, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66860,7 +66860,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66884,7 +66884,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66908,7 +66908,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66932,7 +66932,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66954,7 +66954,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, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -66978,7 +66978,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67002,7 +67002,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67026,7 +67026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67050,7 +67050,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67072,7 +67072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67096,7 +67096,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67120,7 +67120,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67144,7 +67144,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67168,7 +67168,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67190,7 +67190,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, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67214,7 +67214,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67238,7 +67238,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67262,7 +67262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67286,7 +67286,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67308,7 +67308,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, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67332,7 +67332,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67356,7 +67356,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67380,7 +67380,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67404,7 +67404,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67426,7 +67426,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67450,7 +67450,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67474,7 +67474,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67498,7 +67498,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -67522,7 +67522,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67541,7 +67541,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, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67560,7 +67560,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, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67579,7 +67579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67598,7 +67598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67617,7 +67617,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -67636,7 +67636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_shader_storage_buffer_object|VERSION_4_3] /// Change an active shader storage block binding @@ -67652,7 +67652,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(); } + public static void ShaderStorageBlockBinding(Int32 program, Int32 storageBlockIndex, Int32 storageBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_shader_storage_buffer_object|VERSION_4_3] /// Change an active shader storage block binding @@ -67668,7 +67668,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(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new NotImplementedException(); } + public static void ShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67678,7 +67678,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67688,7 +67688,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67698,7 +67698,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67708,7 +67708,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67718,7 +67718,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -67728,7 +67728,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -67744,7 +67744,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(); } + public static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -67760,7 +67760,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -67779,7 +67779,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(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -67798,7 +67798,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -67818,7 +67818,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.Version20 face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.Version20 face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -67838,7 +67838,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use StencilFace overload instead")] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")] [CLSCompliant(false)] - public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.Version20 face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.Version20 face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -67848,7 +67848,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(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -67858,7 +67858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -67871,7 +67871,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(); } + public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -67884,7 +67884,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back stencil test actions @@ -67899,7 +67899,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.OpenGL.StencilOp fail, OpenTK.Graphics.OpenGL.StencilOp zfail, OpenTK.Graphics.OpenGL.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.OpenGL.StencilOp fail, OpenTK.Graphics.OpenGL.StencilOp zfail, OpenTK.Graphics.OpenGL.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back stencil test actions @@ -67917,7 +67917,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Attach the storage for a buffer object to the active buffer texture @@ -67933,7 +67933,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(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Attach the storage for a buffer object to the active buffer texture @@ -67949,7 +67949,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -67971,7 +67971,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, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -67993,7 +67993,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(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -68015,7 +68015,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, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -68037,7 +68037,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, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68046,7 +68046,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1d")] - public static void TexCoord1(Double s) { throw new NotImplementedException(); } + public static void TexCoord1(Double s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68056,7 +68056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1dv")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68065,7 +68065,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1f")] - public static void TexCoord1(Single s) { throw new NotImplementedException(); } + public static void TexCoord1(Single s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68075,7 +68075,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1fv")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68084,7 +68084,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1i")] - public static void TexCoord1(Int32 s) { throw new NotImplementedException(); } + public static void TexCoord1(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68094,7 +68094,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1iv")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68103,7 +68103,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1s")] - public static void TexCoord1(Int16 s) { throw new NotImplementedException(); } + public static void TexCoord1(Int16 s) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68113,7 +68113,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord1sv")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68125,7 +68125,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2d")] - public static void TexCoord2(Double s, Double t) { throw new NotImplementedException(); } + public static void TexCoord2(Double s, Double t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68135,7 +68135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68145,7 +68145,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68155,7 +68155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2dv")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68167,7 +68167,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2f")] - public static void TexCoord2(Single s, Single t) { throw new NotImplementedException(); } + public static void TexCoord2(Single s, Single t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68177,7 +68177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68187,7 +68187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68197,7 +68197,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2fv")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68209,7 +68209,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2i")] - public static void TexCoord2(Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void TexCoord2(Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68219,7 +68219,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68229,7 +68229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68239,7 +68239,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2iv")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68251,7 +68251,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2s")] - public static void TexCoord2(Int16 s, Int16 t) { throw new NotImplementedException(); } + public static void TexCoord2(Int16 s, Int16 t) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68261,7 +68261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68271,7 +68271,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68281,7 +68281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord2sv")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68296,7 +68296,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3d")] - public static void TexCoord3(Double s, Double t, Double r) { throw new NotImplementedException(); } + public static void TexCoord3(Double s, Double t, Double r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68306,7 +68306,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68316,7 +68316,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68326,7 +68326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3dv")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68341,7 +68341,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3f")] - public static void TexCoord3(Single s, Single t, Single r) { throw new NotImplementedException(); } + public static void TexCoord3(Single s, Single t, Single r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68351,7 +68351,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68361,7 +68361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68371,7 +68371,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3fv")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68386,7 +68386,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3i")] - public static void TexCoord3(Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void TexCoord3(Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68396,7 +68396,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68406,7 +68406,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68416,7 +68416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3iv")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68431,7 +68431,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3s")] - public static void TexCoord3(Int16 s, Int16 t, Int16 r) { throw new NotImplementedException(); } + public static void TexCoord3(Int16 s, Int16 t, Int16 r) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68441,7 +68441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68451,7 +68451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68461,7 +68461,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord3sv")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68479,7 +68479,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4d")] - public static void TexCoord4(Double s, Double t, Double r, Double q) { throw new NotImplementedException(); } + public static void TexCoord4(Double s, Double t, Double r, Double q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68489,7 +68489,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68499,7 +68499,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68509,7 +68509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4dv")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68527,7 +68527,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4f")] - public static void TexCoord4(Single s, Single t, Single r, Single q) { throw new NotImplementedException(); } + public static void TexCoord4(Single s, Single t, Single r, Single q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68537,7 +68537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68547,7 +68547,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68557,7 +68557,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4fv")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68575,7 +68575,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4i")] - public static void TexCoord4(Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void TexCoord4(Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68585,7 +68585,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68595,7 +68595,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68605,7 +68605,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4iv")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68623,7 +68623,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4s")] - public static void TexCoord4(Int16 s, Int16 t, Int16 r, Int16 q) { throw new NotImplementedException(); } + public static void TexCoord4(Int16 s, Int16 t, Int16 r, Int16 q) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68633,7 +68633,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68643,7 +68643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set the current texture coordinates @@ -68653,119 +68653,119 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexCoord4sv")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68783,7 +68783,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexCoordPointer")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68804,7 +68804,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68825,7 +68825,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68846,7 +68846,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of texture coordinates @@ -68866,7 +68866,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexCoordPointer")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68881,7 +68881,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, 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 RgbScale or AlphaScale. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnvf")] - public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68897,7 +68897,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68913,7 +68913,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68928,7 +68928,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, 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 RgbScale or AlphaScale. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexEnvi")] - public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68944,7 +68944,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Set texture environment parameters @@ -68960,14 +68960,14 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// /// /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGend")] - public static void TexGend(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) { throw new NotImplementedException(); } + public static void TexGend(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -68983,7 +68983,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, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -68999,7 +68999,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, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69015,7 +69015,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69030,7 +69030,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGenf")] - public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69046,7 +69046,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69062,7 +69062,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69077,7 +69077,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexGeni")] - public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69093,7 +69093,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Control the generation of texture coordinates @@ -69109,7 +69109,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexGen(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69139,7 +69139,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69172,7 +69172,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69205,7 +69205,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69238,7 +69238,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -69270,7 +69270,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] 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, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69303,7 +69303,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69339,7 +69339,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69375,7 +69375,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69411,7 +69411,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -69446,7 +69446,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Establish the data storage, format, dimensions, and number of samples of a multisample texture's image @@ -69470,7 +69470,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glTexImage2DMultisample")] - public static void TexImage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexImage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69506,7 +69506,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69545,7 +69545,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69584,7 +69584,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69623,7 +69623,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -69661,7 +69661,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Establish the data storage, format, dimensions, and number of samples of a multisample texture's image @@ -69688,7 +69688,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glTexImage3DMultisample")] - public static void TexImage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexImage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69703,7 +69703,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the value of pname. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69719,7 +69719,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69735,7 +69735,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69750,7 +69750,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the value of pname. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69758,7 +69758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69766,7 +69766,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69774,7 +69774,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69782,7 +69782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69790,7 +69790,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -69798,7 +69798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69814,7 +69814,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -69830,7 +69830,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -69848,7 +69848,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage1D")] - public static void TexStorage1D(OpenTK.Graphics.OpenGL.TextureTarget1d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.OpenGL.TextureTarget1d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -69869,7 +69869,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.OpenGL.TextureTarget2d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.OpenGL.TextureTarget2d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_storage_multisample|VERSION_4_3] /// Specify storage for a two-dimensional multisample texture @@ -69893,7 +69893,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_storage_multisample|VERSION_4_3", Version = "4.3", EntryPoint = "glTexStorage2DMultisample")] - public static void TexStorage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample2d target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample2d target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -69917,7 +69917,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.OpenGL.TextureTarget3d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.OpenGL.TextureTarget3d target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_storage_multisample|VERSION_4_3] /// Specify storage for a two-dimensional multisample array texture @@ -69944,7 +69944,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_storage_multisample|VERSION_4_3", Version = "4.3", EntryPoint = "glTexStorage3DMultisample")] - public static void TexStorage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample3d target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample3d target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -69971,7 +69971,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -70001,7 +70001,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -70031,7 +70031,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -70061,7 +70061,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -70090,7 +70090,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] 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, CountAttribute(Computed = "format,type,width")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70123,7 +70123,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70159,7 +70159,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70195,7 +70195,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70231,7 +70231,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -70266,7 +70266,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70305,7 +70305,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70347,7 +70347,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70389,7 +70389,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70431,7 +70431,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -70472,11 +70472,11 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_texture_barrier|VERSION_4_5] [AutoGenerated(Category = "ARB_texture_barrier|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBarrier")] - public static void TextureBarrier() { throw new NotImplementedException(); } + public static void TextureBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70484,7 +70484,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBuffer")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70492,7 +70492,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBuffer")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70502,7 +70502,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70512,7 +70512,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70522,7 +70522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70532,7 +70532,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70540,7 +70540,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterf")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70548,7 +70548,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterf")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70556,7 +70556,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70564,7 +70564,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70572,7 +70572,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70580,7 +70580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70588,7 +70588,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteri")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70596,7 +70596,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteri")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70604,7 +70604,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70612,7 +70612,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70620,7 +70620,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70628,7 +70628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70636,7 +70636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70644,7 +70644,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70652,7 +70652,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70660,7 +70660,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref UInt32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70668,7 +70668,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.All pname, UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70676,7 +70676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70684,7 +70684,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70692,7 +70692,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70700,7 +70700,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70709,7 +70709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage1D")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70718,7 +70718,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage1D")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70728,7 +70728,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2D")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70738,7 +70738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2D")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70749,7 +70749,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2DMultisample")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70760,7 +70760,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2DMultisample")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70771,7 +70771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3D")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70782,7 +70782,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3D")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70794,7 +70794,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3DMultisample")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70806,7 +70806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3DMultisample")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70818,7 +70818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage1D")] [CLSCompliant(false)] - public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70832,7 +70832,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70846,7 +70846,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70860,7 +70860,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70874,7 +70874,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70886,7 +70886,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage1D")] [CLSCompliant(false)] - public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70900,7 +70900,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70914,7 +70914,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70928,7 +70928,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70942,7 +70942,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70956,7 +70956,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage2D")] [CLSCompliant(false)] - public static void TextureSubImage2D(Int32 texture, 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(); } + public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70972,7 +70972,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -70988,7 +70988,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71004,7 +71004,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71020,7 +71020,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71034,7 +71034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage2D")] [CLSCompliant(false)] - public static void TextureSubImage2D(UInt32 texture, 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(); } + public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71050,7 +71050,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71066,7 +71066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71082,7 +71082,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71098,7 +71098,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71114,7 +71114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage3D")] [CLSCompliant(false)] - public static void TextureSubImage3D(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 pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(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 pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71132,7 +71132,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(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[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71150,7 +71150,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(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[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71168,7 +71168,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(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[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71186,7 +71186,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(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 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71202,7 +71202,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage3D")] [CLSCompliant(false)] - public static void TextureSubImage3D(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 pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(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 pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71220,7 +71220,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(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[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71238,7 +71238,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(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[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71256,7 +71256,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(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[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71274,7 +71274,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TextureSubImage3D(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 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_view|VERSION_4_3] /// Initialize a texture as a data alias of another texture's data store @@ -71305,7 +71305,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_view|VERSION_4_3] /// Initialize a texture as a data alias of another texture's data store @@ -71336,7 +71336,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71344,7 +71344,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferBase")] [CLSCompliant(false)] - public static void TransformFeedbackBufferBase(Int32 xfb, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferBase(Int32 xfb, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71352,7 +71352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferBase")] [CLSCompliant(false)] - public static void TransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71362,7 +71362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71372,7 +71372,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71382,7 +71382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -71392,7 +71392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify values to record in transform feedback buffers @@ -71411,7 +71411,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, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify values to record in transform feedback buffers @@ -71430,7 +71430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a translation matrix @@ -71445,7 +71445,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the x, y, and z coordinates of a translation vector. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTranslated")] - public static void Translate(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Translate(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Multiply the current matrix by a translation matrix @@ -71460,7 +71460,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the x, y, and z coordinates of a translation vector. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTranslatef")] - public static void Translate(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Translate(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71472,7 +71472,7 @@ namespace OpenTK.Graphics.OpenGL /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1d")] - public static void Uniform1(Int32 location, Double x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71488,7 +71488,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, [CountAttribute(Parameter = "count*1")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71504,7 +71504,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, [CountAttribute(Parameter = "count*1")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71520,7 +71520,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*1")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71532,7 +71532,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71548,7 +71548,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, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71564,7 +71564,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, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71580,7 +71580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71592,7 +71592,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71608,7 +71608,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, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71624,7 +71624,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, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71640,7 +71640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71653,7 +71653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71669,7 +71669,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71685,7 +71685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71701,7 +71701,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71716,7 +71716,7 @@ namespace OpenTK.Graphics.OpenGL /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2d")] - public static void Uniform2(Int32 location, Double x, Double y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71732,7 +71732,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, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71748,7 +71748,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, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71764,7 +71764,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71779,7 +71779,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71795,7 +71795,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71811,7 +71811,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71827,7 +71827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71842,7 +71842,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71858,7 +71858,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -71874,7 +71874,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71890,7 +71890,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71906,7 +71906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71922,7 +71922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -71938,7 +71938,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71956,7 +71956,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3d")] - public static void Uniform3(Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71972,7 +71972,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, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -71988,7 +71988,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, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72004,7 +72004,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72022,7 +72022,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72038,7 +72038,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72054,7 +72054,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72070,7 +72070,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72088,7 +72088,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72104,7 +72104,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72120,7 +72120,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72136,7 +72136,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72155,7 +72155,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72171,7 +72171,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72187,7 +72187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72203,7 +72203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72224,7 +72224,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4d")] - public static void Uniform4(Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72240,7 +72240,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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72256,7 +72256,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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -72272,7 +72272,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72293,7 +72293,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72309,7 +72309,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72325,7 +72325,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72341,7 +72341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72362,7 +72362,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72378,7 +72378,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72394,7 +72394,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -72410,7 +72410,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72432,7 +72432,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72448,7 +72448,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72464,7 +72464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -72480,7 +72480,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Assign a binding point to an active uniform block @@ -72496,7 +72496,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(); } + public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Assign a binding point to an active uniform block @@ -72512,7 +72512,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(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72521,7 +72521,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72530,7 +72530,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72539,7 +72539,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72548,7 +72548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72557,7 +72557,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72566,7 +72566,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72575,7 +72575,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72584,7 +72584,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72593,7 +72593,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72602,7 +72602,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72611,7 +72611,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72620,7 +72620,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72629,7 +72629,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72638,7 +72638,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72647,7 +72647,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72656,7 +72656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72665,7 +72665,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72674,7 +72674,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72683,7 +72683,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72692,7 +72692,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72701,7 +72701,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72710,7 +72710,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72719,7 +72719,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72728,7 +72728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72737,7 +72737,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72746,7 +72746,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72755,7 +72755,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72764,7 +72764,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72773,7 +72773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72782,7 +72782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72791,7 +72791,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72800,7 +72800,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72809,7 +72809,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72818,7 +72818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72827,7 +72827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72836,7 +72836,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72845,7 +72845,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72854,7 +72854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72863,7 +72863,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72872,7 +72872,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72881,7 +72881,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -72890,7 +72890,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72899,7 +72899,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72908,7 +72908,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72917,7 +72917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72926,7 +72926,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72935,7 +72935,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72944,7 +72944,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72953,7 +72953,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72962,7 +72962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -72971,7 +72971,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72980,7 +72980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72989,7 +72989,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -72998,7 +72998,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73014,7 +73014,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, [CountAttribute(Parameter = "count")] Int32[] indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73030,7 +73030,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, [CountAttribute(Parameter = "count")] ref Int32 indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73046,7 +73046,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73062,7 +73062,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, [CountAttribute(Parameter = "count")] UInt32[] indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73078,7 +73078,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, [CountAttribute(Parameter = "count")] ref UInt32 indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -73094,24 +73094,24 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32* indices) { throw new NotImplementedException(); } + public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glUnmapNamedBuffer")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glUnmapNamedBuffer")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Installs a program object as part of current rendering state @@ -73121,7 +73121,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(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Installs a program object as part of current rendering state @@ -73131,7 +73131,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind stages of a program object to a program pipeline @@ -73147,7 +73147,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(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind stages of a program object to a program pipeline @@ -73163,7 +73163,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(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL.ProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Validates a program object @@ -73173,7 +73173,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(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Validates a program object @@ -73183,7 +73183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Validate a program pipeline object against current GL state @@ -73193,7 +73193,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(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Validate a program pipeline object against current GL state @@ -73203,7 +73203,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(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73215,7 +73215,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2d")] - public static void Vertex2(Double x, Double y) { throw new NotImplementedException(); } + public static void Vertex2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73225,7 +73225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73235,7 +73235,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73245,7 +73245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2dv")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73257,7 +73257,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2f")] - public static void Vertex2(Single x, Single y) { throw new NotImplementedException(); } + public static void Vertex2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73267,7 +73267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73277,7 +73277,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73287,7 +73287,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2fv")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73299,7 +73299,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2i")] - public static void Vertex2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void Vertex2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73309,7 +73309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73319,7 +73319,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73329,7 +73329,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2iv")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73341,7 +73341,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2s")] - public static void Vertex2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void Vertex2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73351,7 +73351,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73361,7 +73361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73371,7 +73371,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex2sv")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73386,7 +73386,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3d")] - public static void Vertex3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Vertex3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73396,7 +73396,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73406,7 +73406,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73416,7 +73416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3dv")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73431,7 +73431,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3f")] - public static void Vertex3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Vertex3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73441,7 +73441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73451,7 +73451,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73461,7 +73461,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3fv")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73476,7 +73476,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3i")] - public static void Vertex3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Vertex3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73486,7 +73486,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73496,7 +73496,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73506,7 +73506,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3iv")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73521,7 +73521,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3s")] - public static void Vertex3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void Vertex3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73531,7 +73531,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73541,7 +73541,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73551,7 +73551,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex3sv")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73569,7 +73569,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4d")] - public static void Vertex4(Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void Vertex4(Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73579,7 +73579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73589,7 +73589,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73599,7 +73599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4dv")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73617,7 +73617,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4f")] - public static void Vertex4(Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void Vertex4(Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73627,7 +73627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73637,7 +73637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73647,7 +73647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4fv")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73665,7 +73665,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4i")] - public static void Vertex4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void Vertex4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73675,7 +73675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73685,7 +73685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73695,7 +73695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4iv")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73713,7 +73713,7 @@ 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. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4s")] - public static void Vertex4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void Vertex4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73723,7 +73723,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73733,7 +73733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0][deprecated: v3.2] /// Specify a vertex @@ -73743,7 +73743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glVertex4sv")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73751,7 +73751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribBinding")] [CLSCompliant(false)] - public static void VertexArrayAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73759,7 +73759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribBinding")] [CLSCompliant(false)] - public static void VertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73770,7 +73770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73781,7 +73781,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73791,7 +73791,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribIFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73801,7 +73801,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribIFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73811,7 +73811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73821,7 +73821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73829,7 +73829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayBindingDivisor")] [CLSCompliant(false)] - public static void VertexArrayBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73837,21 +73837,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayBindingDivisor")] [CLSCompliant(false)] - public static void VertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayElementBuffer")] [CLSCompliant(false)] - public static void VertexArrayElementBuffer(Int32 vaobj, Int32 buffer) { throw new NotImplementedException(); } + public static void VertexArrayElementBuffer(Int32 vaobj, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayElementBuffer")] [CLSCompliant(false)] - public static void VertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer) { throw new NotImplementedException(); } + public static void VertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73861,7 +73861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffer")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73871,7 +73871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffer")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73882,7 +73882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73893,7 +73893,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73904,7 +73904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static unsafe void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } + public static unsafe void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73915,7 +73915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73926,7 +73926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -73937,7 +73937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static unsafe void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } + public static unsafe void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -73950,7 +73950,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(); } + public static void VertexAttrib1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -73963,7 +73963,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -73976,7 +73976,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -73989,7 +73989,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74002,7 +74002,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(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74015,7 +74015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74028,7 +74028,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74041,7 +74041,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74054,7 +74054,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(); } + public static void VertexAttrib1(Int32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74067,7 +74067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74080,7 +74080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74093,7 +74093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74109,7 +74109,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(); } + public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74125,7 +74125,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74138,7 +74138,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74151,7 +74151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74164,7 +74164,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74177,7 +74177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74190,7 +74190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74203,7 +74203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74219,7 +74219,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(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74235,7 +74235,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74248,7 +74248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74261,7 +74261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74274,7 +74274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74287,7 +74287,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74300,7 +74300,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74313,7 +74313,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74329,7 +74329,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(); } + public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74345,7 +74345,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74358,7 +74358,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74371,7 +74371,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74384,7 +74384,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74397,7 +74397,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74410,7 +74410,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74423,7 +74423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74442,7 +74442,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(); } + public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74461,7 +74461,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74474,7 +74474,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74487,7 +74487,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74500,7 +74500,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74513,7 +74513,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74526,7 +74526,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74539,7 +74539,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74558,7 +74558,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(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74577,7 +74577,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74590,7 +74590,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74603,7 +74603,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74616,7 +74616,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74629,7 +74629,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74642,7 +74642,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74655,7 +74655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74674,7 +74674,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(); } + public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74693,7 +74693,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74706,7 +74706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74719,7 +74719,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74732,7 +74732,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74745,7 +74745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74758,7 +74758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74771,7 +74771,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74784,7 +74784,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74797,7 +74797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74810,7 +74810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74832,7 +74832,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(); } + public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74854,7 +74854,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74867,7 +74867,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74880,7 +74880,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74893,7 +74893,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74906,7 +74906,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74919,7 +74919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74932,7 +74932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74954,7 +74954,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(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74976,7 +74976,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -74989,7 +74989,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75002,7 +75002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75015,7 +75015,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75028,7 +75028,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75041,7 +75041,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75054,7 +75054,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75067,7 +75067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75080,7 +75080,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75093,7 +75093,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75106,7 +75106,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75119,7 +75119,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75132,112 +75132,112 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -75247,7 +75247,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -75257,91 +75257,91 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75363,7 +75363,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(); } + public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75385,7 +75385,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75398,7 +75398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75411,7 +75411,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75424,7 +75424,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75437,7 +75437,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75450,7 +75450,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75463,7 +75463,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75476,7 +75476,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75489,7 +75489,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75502,7 +75502,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75515,7 +75515,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75528,7 +75528,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75541,7 +75541,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75554,7 +75554,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75567,7 +75567,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75580,7 +75580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75593,7 +75593,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75606,7 +75606,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -75619,7 +75619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Associate a vertex attribute and a vertex buffer binding @@ -75632,7 +75632,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(); } + public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Associate a vertex attribute and a vertex buffer binding @@ -75645,7 +75645,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(UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -75658,7 +75658,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -75671,7 +75671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Specify the organization of vertex arrays @@ -75693,7 +75693,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(); } + public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Specify the organization of vertex arrays @@ -75715,49 +75715,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribI1(Int32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1ui")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75765,7 +75765,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75773,49 +75773,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75823,28 +75823,28 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75853,7 +75853,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75862,49 +75862,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75913,49 +75913,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75965,7 +75965,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -75975,133 +75975,133 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76111,49 +76111,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -76162,7 +76162,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -76171,7 +76171,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76181,7 +76181,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76193,7 +76193,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76205,7 +76205,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76217,7 +76217,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76229,7 +76229,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76240,7 +76240,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76253,7 +76253,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76266,7 +76266,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76279,7 +76279,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76292,7 +76292,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76302,7 +76302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76314,7 +76314,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76326,7 +76326,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76338,7 +76338,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76350,7 +76350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76361,7 +76361,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribIntegerType overload instead")] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76374,7 +76374,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76387,7 +76387,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76400,7 +76400,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -76413,35 +76413,35 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribIPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or 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(); } + public static void VertexAttribL1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or 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(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76449,7 +76449,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76457,49 +76457,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76508,7 +76508,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76517,49 +76517,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76569,7 +76569,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76579,49 +76579,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -76630,7 +76630,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribLFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -76639,7 +76639,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribLFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76649,7 +76649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [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, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76661,7 +76661,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76673,7 +76673,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76685,7 +76685,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76697,7 +76697,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76708,7 +76708,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribDoubleType overload instead")] [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.VertexAttribDPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76721,7 +76721,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76734,7 +76734,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76747,7 +76747,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76760,7 +76760,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76770,7 +76770,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [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, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76782,7 +76782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76794,7 +76794,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76806,7 +76806,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76818,7 +76818,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76829,7 +76829,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use VertexAttribDoubleType overload instead")] [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.VertexAttribDPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76842,7 +76842,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76855,7 +76855,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76868,7 +76868,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -76881,7 +76881,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribDPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76890,7 +76890,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76899,7 +76899,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76908,7 +76908,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76917,7 +76917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76926,7 +76926,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76935,7 +76935,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76944,7 +76944,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76953,7 +76953,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76962,7 +76962,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76971,7 +76971,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76980,7 +76980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76989,7 +76989,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -76998,7 +76998,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -77007,7 +77007,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -77016,7 +77016,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -77025,7 +77025,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77050,7 +77050,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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77077,7 +77077,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77104,7 +77104,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77131,7 +77131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77158,7 +77158,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77183,7 +77183,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77210,7 +77210,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77237,7 +77237,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77264,7 +77264,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -77291,7 +77291,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Modify the rate at which generic vertex attributes advance @@ -77304,7 +77304,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(); } + public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Modify the rate at which generic vertex attributes advance @@ -77317,91 +77317,91 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP2(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP3(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP4(OpenTK.Graphics.OpenGL.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77419,7 +77419,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glVertexPointer")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77440,7 +77440,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77461,7 +77461,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77482,7 +77482,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1][deprecated: v3.2] /// Define an array of vertex data @@ -77502,7 +77502,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glVertexPointer")] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the viewport @@ -77520,7 +77520,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77536,7 +77536,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, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77552,7 +77552,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, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77568,7 +77568,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77584,7 +77584,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77600,7 +77600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -77616,7 +77616,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77638,7 +77638,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(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77660,7 +77660,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77673,7 +77673,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, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77686,7 +77686,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, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77699,7 +77699,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77712,7 +77712,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77725,7 +77725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -77738,7 +77738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77755,7 +77755,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 void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77772,7 +77772,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 void WaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77789,7 +77789,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 void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77805,7 +77805,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -77821,7 +77821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77833,7 +77833,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2d")] - public static void WindowPos2(Double x, Double y) { throw new NotImplementedException(); } + public static void WindowPos2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77843,7 +77843,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77853,7 +77853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77863,7 +77863,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2dv")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77875,7 +77875,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2f")] - public static void WindowPos2(Single x, Single y) { throw new NotImplementedException(); } + public static void WindowPos2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77885,7 +77885,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77895,7 +77895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77905,7 +77905,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2fv")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77917,7 +77917,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2i")] - public static void WindowPos2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77927,7 +77927,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77937,7 +77937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77947,7 +77947,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2iv")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77959,7 +77959,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2s")] - public static void WindowPos2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77969,7 +77969,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77979,7 +77979,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -77989,7 +77989,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos2sv")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78004,7 +78004,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3d")] - public static void WindowPos3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void WindowPos3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78014,7 +78014,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78024,7 +78024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78034,7 +78034,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3dv")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78049,7 +78049,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3f")] - public static void WindowPos3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void WindowPos3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78059,7 +78059,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78069,7 +78069,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78079,7 +78079,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3fv")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78094,7 +78094,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3i")] - public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78104,7 +78104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78114,7 +78114,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78124,7 +78124,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3iv")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78139,7 +78139,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3s")] - public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78149,7 +78149,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78159,7 +78159,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4][deprecated: v3.2] /// Specify the raster position in window coordinates for pixel operations @@ -78169,7 +78169,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glWindowPos3sv")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -78179,7 +78179,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(Int32 memory, Int64 key, Int32 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// @@ -78187,19 +78187,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glAcquireKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new NotImplementedException(); } + public static bool AcquireKeyedMutexWin32(UInt32 memory, UInt64 key, UInt32 timeout) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -78212,7 +78212,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(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -78225,17 +78225,17 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_stencil_two_side] /// [AutoGenerated(Category = "EXT_stencil_two_side", Version = "", EntryPoint = "glActiveStencilFaceEXT")] - public static void ActiveStencilFace(OpenTK.Graphics.OpenGL.StencilFaceDirection face) { throw new NotImplementedException(); } + public static void ActiveStencilFace(OpenTK.Graphics.OpenGL.StencilFaceDirection face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_light_texture] /// [AutoGenerated(Category = "EXT_light_texture", Version = "", EntryPoint = "glApplyTextureEXT")] - public static void ApplyTexture(OpenTK.Graphics.OpenGL.ExtLightTexture mode) { throw new NotImplementedException(); } + public static void ApplyTexture(OpenTK.Graphics.OpenGL.ExtLightTexture mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78251,7 +78251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78267,7 +78267,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78283,7 +78283,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78299,7 +78299,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78315,7 +78315,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if textures are loaded in texture memory @@ -78331,7 +78331,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glAreTexturesResidentEXT")] [CLSCompliant(false)] - public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreTexturesResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Render a vertex using the specified vertex array element @@ -78340,7 +78340,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies an index into the enabled vertex data arrays. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glArrayElementEXT")] - public static void ArrayElement(Int32 i) { throw new NotImplementedException(); } + public static void ArrayElement(Int32 i) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Start transform feedback operation @@ -78349,11 +78349,11 @@ namespace OpenTK.Graphics.OpenGL /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glBeginTransformFeedbackEXT")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.ExtTransformFeedback primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.ExtTransformFeedback primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBeginVertexShaderEXT")] - public static void BeginVertexShader() { throw new NotImplementedException(); } + public static void BeginVertexShader() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -78369,7 +78369,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(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -78385,7 +78385,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// @@ -78394,7 +78394,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// @@ -78403,7 +78403,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78425,7 +78425,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, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78447,7 +78447,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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78469,7 +78469,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -78491,7 +78491,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Bind a user-defined varying out variable to a fragment shader color number @@ -78507,7 +78507,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Bind a user-defined varying out variable to a fragment shader color number @@ -78523,7 +78523,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glBindFragDataLocationEXT")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Bind a framebuffer to a framebuffer target @@ -78536,7 +78536,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(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Bind a framebuffer to a framebuffer target @@ -78549,7 +78549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferEXT")] [CLSCompliant(false)] - public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Bind a level of a texture to an image unit @@ -78577,7 +78577,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(); } + public static void BindImageTexture(Int32 index, Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Bind a level of a texture to an image unit @@ -78605,19 +78605,19 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindImageTexture(UInt32 index, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore access, Int32 format) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindLightParameterEXT")] - public static Int32 BindLightParameter(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter value) { throw new NotImplementedException(); } + public static Int32 BindLightParameter(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindMaterialParameterEXT")] - public static Int32 BindMaterialParameter(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter value) { throw new NotImplementedException(); } + public static Int32 BindMaterialParameter(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -78625,7 +78625,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindMultiTexture(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -78633,12 +78633,12 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindMultiTexture(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindParameterEXT")] - public static Int32 BindParameter(OpenTK.Graphics.OpenGL.ExtVertexShader value) { throw new NotImplementedException(); } + public static Int32 BindParameter(OpenTK.Graphics.OpenGL.ExtVertexShader value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -78648,7 +78648,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(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -78658,7 +78658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Bind a renderbuffer to a renderbuffer target @@ -78671,7 +78671,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(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Bind a renderbuffer to a renderbuffer target @@ -78684,14 +78684,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferEXT")] [CLSCompliant(false)] - public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindTexGenParameterEXT")] - public static Int32 BindTexGenParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter value) { throw new NotImplementedException(); } + public static Int32 BindTexGenParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Bind a named texture to a texturing target @@ -78704,7 +78704,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(); } + public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Bind a named texture to a texturing target @@ -78717,25 +78717,25 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glBindTextureEXT")] [CLSCompliant(false)] - public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindTextureUnitParameterEXT")] - public static Int32 BindTextureUnitParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.ExtVertexShader value) { throw new NotImplementedException(); } + public static Int32 BindTextureUnitParameter(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.ExtVertexShader value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindVertexShaderEXT")] [CLSCompliant(false)] - public static void BindVertexShader(Int32 id) { throw new NotImplementedException(); } + public static void BindVertexShader(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glBindVertexShaderEXT")] [CLSCompliant(false)] - public static void BindVertexShader(UInt32 id) { throw new NotImplementedException(); } + public static void BindVertexShader(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78743,7 +78743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bEXT")] [CLSCompliant(false)] - public static void Binormal3(Byte bx, Byte by, Byte bz) { throw new NotImplementedException(); } + public static void Binormal3(Byte bx, Byte by, Byte bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78751,150 +78751,150 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bEXT")] [CLSCompliant(false)] - public static void Binormal3(SByte bx, SByte by, SByte bz) { throw new NotImplementedException(); } + public static void Binormal3(SByte bx, SByte by, SByte bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3bvEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dEXT")] - public static void Binormal3(Double bx, Double by, Double bz) { throw new NotImplementedException(); } + public static void Binormal3(Double bx, Double by, Double bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3dvEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fEXT")] - public static void Binormal3(Single bx, Single by, Single bz) { throw new NotImplementedException(); } + public static void Binormal3(Single bx, Single by, Single bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3fvEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3iEXT")] - public static void Binormal3(Int32 bx, Int32 by, Int32 bz) { throw new NotImplementedException(); } + public static void Binormal3(Int32 bx, Int32 by, Int32 bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3ivEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3sEXT")] - public static void Binormal3(Int16 bx, Int16 by, Int16 bz) { throw new NotImplementedException(); } + public static void Binormal3(Int16 bx, Int16 by, Int16 bz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] [CLSCompliant(false)] - public static void Binormal3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Binormal3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormal3svEXT")] [CLSCompliant(false)] - public static unsafe void Binormal3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Binormal3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormalPointerEXT")] - public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78904,7 +78904,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78914,7 +78914,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78924,7 +78924,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -78933,7 +78933,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glBinormalPointerEXT")] public static void BinormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_color] /// Set the blend color @@ -78951,7 +78951,7 @@ namespace OpenTK.Graphics.OpenGL /// specify the components of BlendColor /// [AutoGenerated(Category = "EXT_blend_color", Version = "", EntryPoint = "glBlendColorEXT")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -78960,7 +78960,7 @@ namespace OpenTK.Graphics.OpenGL /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_minmax] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -78970,7 +78970,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendEquationMode overload instead")] [AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")] - public static void BlendEquation(OpenTK.Graphics.OpenGL.ExtBlendMinmax mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL.ExtBlendMinmax mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_equation_separate] /// Set the RGB blend equation and the alpha blend equation separately @@ -78982,7 +78982,7 @@ namespace OpenTK.Graphics.OpenGL /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "EXT_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateEXT")] - public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_equation_separate] /// Set the RGB blend equation and the alpha blend equation separately @@ -78995,7 +78995,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlendEquationModeExt overload instead")] [AutoGenerated(Category = "EXT_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateEXT")] - public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_blend_func_separate] /// Specify pixel arithmetic for RGB and alpha components separately @@ -79013,7 +79013,7 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "EXT_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateEXT")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -79049,7 +79049,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "EXT_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferEXT")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_blit] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -79086,7 +79086,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use BlitFramebufferFilter overload instead")] [AutoGenerated(Category = "EXT_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferEXT")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.ExtFramebufferBlit filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.ExtFramebufferBlit filter) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79096,7 +79096,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79106,7 +79106,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79116,7 +79116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -79126,7 +79126,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void BufferStorageExternal(OpenTK.Graphics.OpenGL.ExtExternalBuffer target, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79135,7 +79135,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79144,7 +79144,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79153,7 +79153,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -79162,7 +79162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glBufferStorageMemEXT")] [CLSCompliant(false)] - public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void BufferStorageMem(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Check the completeness status of a framebuffer @@ -79171,21 +79171,21 @@ namespace OpenTK.Graphics.OpenGL /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glCheckFramebufferStatusEXT")] - public static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [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(); } + public static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -79193,7 +79193,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glClearColorIiEXT")] - public static void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearColorI(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -79202,7 +79202,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ClearColorI(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79213,7 +79213,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79226,7 +79226,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79239,7 +79239,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79252,7 +79252,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79265,7 +79265,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79275,7 +79275,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79287,7 +79287,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79299,7 +79299,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79311,7 +79311,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79323,7 +79323,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79334,7 +79334,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79347,7 +79347,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79360,7 +79360,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79373,7 +79373,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79386,7 +79386,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79396,7 +79396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79408,7 +79408,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79420,7 +79420,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79432,7 +79432,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79444,7 +79444,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79457,7 +79457,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79472,7 +79472,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79487,7 +79487,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79502,7 +79502,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79517,7 +79517,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79530,7 +79530,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79545,7 +79545,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79560,7 +79560,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79575,7 +79575,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79590,7 +79590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79603,7 +79603,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79618,7 +79618,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79633,7 +79633,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79648,7 +79648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79663,7 +79663,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79676,7 +79676,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79691,7 +79691,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79706,7 +79706,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79721,7 +79721,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79736,7 +79736,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79748,7 +79748,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79762,7 +79762,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79776,7 +79776,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79790,7 +79790,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79804,7 +79804,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79816,7 +79816,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79830,7 +79830,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79844,7 +79844,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79858,7 +79858,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79872,7 +79872,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79885,7 +79885,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79900,7 +79900,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79915,7 +79915,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79930,7 +79930,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79945,7 +79945,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79958,7 +79958,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79973,7 +79973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -79988,7 +79988,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80003,7 +80003,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80018,7 +80018,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80031,7 +80031,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80046,7 +80046,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80061,7 +80061,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80076,7 +80076,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80091,7 +80091,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80104,7 +80104,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80119,7 +80119,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80134,7 +80134,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80149,7 +80149,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80164,7 +80164,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80176,7 +80176,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80190,7 +80190,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80204,7 +80204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80218,7 +80218,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80232,7 +80232,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80244,7 +80244,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80258,7 +80258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80272,7 +80272,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80286,7 +80286,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80300,12 +80300,12 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClientAttribDefaultEXT")] - public static void ClientAttribDefault(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void ClientAttribDefault(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers2] /// @@ -80315,7 +80315,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ColorMaskIndexed(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_buffers2] /// @@ -80325,7 +80325,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ColorMaskIndexed(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80346,7 +80346,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glColorPointerEXT")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80370,7 +80370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80394,7 +80394,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80418,7 +80418,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of colors @@ -80441,7 +80441,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glColorPointerEXT")] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80465,7 +80465,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to replace the specified region of the color table. /// [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glColorSubTableEXT")] - public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new NotImplementedException(); } + public static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80492,7 +80492,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,count")] T5[] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80519,7 +80519,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,count")] T5[,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80546,7 +80546,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,count")] T5[,,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -80572,7 +80572,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glColorSubTableEXT")] 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, CountAttribute(Computed = "format,type,count")] ref T5 data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80596,7 +80596,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80623,7 +80623,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80650,7 +80650,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80677,7 +80677,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Define a color lookup table @@ -80703,7 +80703,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glColorTableEXT")] 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, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80715,7 +80715,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80730,7 +80730,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80745,7 +80745,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80760,7 +80760,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80774,7 +80774,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] 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, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80787,7 +80787,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80803,7 +80803,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80819,7 +80819,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80835,7 +80835,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80850,7 +80850,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] 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, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80864,7 +80864,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80881,7 +80881,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80898,7 +80898,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80915,7 +80915,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80931,7 +80931,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] 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, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80943,7 +80943,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80958,7 +80958,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80973,7 +80973,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -80988,7 +80988,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81002,7 +81002,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] 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, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81016,7 +81016,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81033,7 +81033,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81050,7 +81050,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81067,7 +81067,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81083,7 +81083,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] 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, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81099,7 +81099,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81118,7 +81118,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81137,7 +81137,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81156,7 +81156,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81174,7 +81174,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] 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, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81187,7 +81187,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81202,7 +81202,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81217,7 +81217,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81232,7 +81232,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81247,7 +81247,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81260,7 +81260,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81275,7 +81275,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81290,7 +81290,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81305,7 +81305,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81320,7 +81320,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81334,7 +81334,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81350,7 +81350,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81366,7 +81366,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81382,7 +81382,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81398,7 +81398,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81412,7 +81412,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81428,7 +81428,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81444,7 +81444,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81460,7 +81460,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81476,7 +81476,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81491,7 +81491,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81508,7 +81508,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81525,7 +81525,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81542,7 +81542,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81559,7 +81559,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81574,7 +81574,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81591,7 +81591,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81608,7 +81608,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81625,7 +81625,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81642,7 +81642,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81655,7 +81655,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81670,7 +81670,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81685,7 +81685,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81700,7 +81700,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81715,7 +81715,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81728,7 +81728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81743,7 +81743,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81758,7 +81758,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81773,7 +81773,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81788,7 +81788,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81803,7 +81803,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81820,7 +81820,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81837,7 +81837,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81854,7 +81854,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81871,7 +81871,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81886,7 +81886,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81903,7 +81903,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81920,7 +81920,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81937,7 +81937,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81954,7 +81954,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81971,7 +81971,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -81990,7 +81990,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82009,7 +82009,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82028,7 +82028,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82047,7 +82047,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82064,7 +82064,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: imageSize] [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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82083,7 +82083,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82102,7 +82102,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82121,7 +82121,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -82140,7 +82140,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82164,7 +82164,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82191,7 +82191,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82218,7 +82218,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82245,7 +82245,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82271,7 +82271,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] 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, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82296,7 +82296,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82324,7 +82324,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82352,7 +82352,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82380,7 +82380,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a one-dimensional convolution filter @@ -82407,7 +82407,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter1DEXT")] 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, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82434,7 +82434,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82464,7 +82464,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82494,7 +82494,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82524,7 +82524,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82553,7 +82553,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] 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, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82581,7 +82581,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82612,7 +82612,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82643,7 +82643,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82674,7 +82674,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a two-dimensional convolution filter @@ -82704,7 +82704,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionFilter2DEXT")] 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, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82719,7 +82719,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfEXT")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82735,7 +82735,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfEXT")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82751,7 +82751,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82767,7 +82767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82784,7 +82784,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82801,7 +82801,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82816,7 +82816,7 @@ namespace OpenTK.Graphics.OpenGL /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameteriEXT")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32 @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82832,7 +82832,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameteriEXT")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32 @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82848,7 +82848,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82864,7 +82864,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82881,7 +82881,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Set convolution parameters @@ -82898,7 +82898,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glConvolutionParameterivEXT")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_color_subtable] /// Respecify a portion of a color table @@ -82919,7 +82919,7 @@ namespace OpenTK.Graphics.OpenGL /// The number of table entries to replace. /// [AutoGenerated(Category = "EXT_color_subtable", Version = "", EntryPoint = "glCopyColorSubTableEXT")] - public static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a one-dimensional convolution filter @@ -82940,7 +82940,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel array to copy. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter1DEXT")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a one-dimensional convolution filter @@ -82962,7 +82962,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter1DEXT")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a two-dimensional convolution filter @@ -82986,7 +82986,7 @@ namespace OpenTK.Graphics.OpenGL /// The height of the pixel array to copy. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter2DEXT")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Copy pixels into a two-dimensional convolution filter @@ -83011,7 +83011,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glCopyConvolutionFilter2DEXT")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83023,7 +83023,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage1DEXT")] - public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83036,7 +83036,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage2DEXT")] - public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, 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(); } + public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83047,7 +83047,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage1DEXT")] - public static void CopyMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage1D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83060,7 +83060,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage2DEXT")] - public static void CopyMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage2D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83074,7 +83074,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage3DEXT")] - public static void CopyMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage3D(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy pixels into a 1D texture image @@ -83101,7 +83101,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexImage1DEXT")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy pixels into a 2D texture image @@ -83131,7 +83131,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be 0. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexImage2DEXT")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy a one-dimensional texture subimage @@ -83155,7 +83155,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the width of the texture subimage. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexSubImage1DEXT")] - public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy a two-dimensional texture subimage @@ -83185,7 +83185,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexSubImage2DEXT")] - public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_copy_texture] /// Copy a three-dimensional texture subimage @@ -83218,7 +83218,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "EXT_copy_texture", Version = "", EntryPoint = "glCopyTexSubImage3DEXT")] - public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83231,7 +83231,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83244,7 +83244,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83258,7 +83258,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83272,7 +83272,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83284,7 +83284,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83296,7 +83296,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83310,7 +83310,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83324,7 +83324,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83339,7 +83339,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -83354,49 +83354,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void CreateMemoryObjects(Int32 n, [OutAttribute] out UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glCreateMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void CreateMemoryObjects(Int32 n, [OutAttribute] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -83408,7 +83408,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -83423,49 +83423,49 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] [CLSCompliant(false)] - public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] [CLSCompliant(false)] - public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterdvEXT")] [CLSCompliant(false)] - public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] [CLSCompliant(false)] - public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] [CLSCompliant(false)] - public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_cull_vertex] /// /// [length: 4] [AutoGenerated(Category = "EXT_cull_vertex", Version = "", EntryPoint = "glCullParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void CullParameter(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83475,7 +83475,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83485,7 +83485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83498,7 +83498,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83511,7 +83511,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83524,7 +83524,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83537,7 +83537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83550,7 +83550,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete framebuffer objects @@ -83563,61 +83563,61 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersEXT")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObject([CountAttribute(Parameter = "n")] UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] Int32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new NotImplementedException(); } + public static void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// /// [length: n] [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glDeleteMemoryObjectsEXT")] [CLSCompliant(false)] - public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new NotImplementedException(); } + public static unsafe void DeleteMemoryObjects(Int32 n, [CountAttribute(Parameter = "n")] UInt32* memoryObjects) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83627,7 +83627,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83637,7 +83637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83650,7 +83650,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83663,7 +83663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83676,7 +83676,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83689,7 +83689,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83702,7 +83702,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -83715,7 +83715,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83725,7 +83725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83735,7 +83735,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83748,7 +83748,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83761,7 +83761,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83774,7 +83774,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83787,7 +83787,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83800,7 +83800,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Delete renderbuffer objects @@ -83813,61 +83813,61 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersEXT")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphore([CountAttribute(Parameter = "count")] UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new NotImplementedException(); } + public static void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] ref UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glDeleteSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void DeleteSemaphores(Int32 n, [CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83877,7 +83877,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83887,7 +83887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83900,7 +83900,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83913,7 +83913,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83926,7 +83926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83939,7 +83939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83952,7 +83952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Delete named textures @@ -83965,53 +83965,53 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glDeleteTexturesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDeleteVertexShaderEXT")] [CLSCompliant(false)] - public static void DeleteVertexShader(Int32 id) { throw new NotImplementedException(); } + public static void DeleteVertexShader(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDeleteVertexShaderEXT")] [CLSCompliant(false)] - public static void DeleteVertexShader(UInt32 id) { throw new NotImplementedException(); } + public static void DeleteVertexShader(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_depth_bounds_test] /// /// [AutoGenerated(Category = "EXT_depth_bounds_test", Version = "", EntryPoint = "glDepthBoundsEXT")] - public static void DepthBounds(Double zmin, Double zmax) { throw new NotImplementedException(); } + public static void DepthBounds(Double zmin, Double zmax) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -84019,7 +84019,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -84027,7 +84027,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -84035,7 +84035,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -84043,61 +84043,61 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDisableVariantClientStateEXT")] [CLSCompliant(false)] - public static void DisableVariantClientState(Int32 id) { throw new NotImplementedException(); } + public static void DisableVariantClientState(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glDisableVariantClientStateEXT")] [CLSCompliant(false)] - public static void DisableVariantClientState(UInt32 id) { throw new NotImplementedException(); } + public static void DisableVariantClientState(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DisableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [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(); } + public static void DisableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Render primitives from array data @@ -84113,7 +84113,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glDrawArraysEXT")] - public static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Render primitives from array data @@ -84128,7 +84128,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glDrawArraysEXT")] - public static void DrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a range of elements @@ -84147,7 +84147,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a range of elements @@ -84165,7 +84165,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84187,7 +84187,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84212,7 +84212,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84237,7 +84237,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84262,7 +84262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84286,7 +84286,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84307,7 +84307,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84331,7 +84331,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84355,7 +84355,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84379,7 +84379,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -84402,7 +84402,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84428,7 +84428,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, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84456,7 +84456,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84484,7 +84484,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84512,7 +84512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84540,7 +84540,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84566,7 +84566,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84594,7 +84594,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84622,7 +84622,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84650,7 +84650,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84678,7 +84678,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84703,7 +84703,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, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84730,7 +84730,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84757,7 +84757,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84784,7 +84784,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84811,7 +84811,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84836,7 +84836,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84863,7 +84863,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84890,7 +84890,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84917,7 +84917,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_range_elements] /// Render primitives from array data @@ -84944,7 +84944,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of edge flags @@ -84960,7 +84960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] [CLSCompliant(false)] - public static void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool[] pointer) { throw new NotImplementedException(); } + public static void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool[] pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of edge flags @@ -84976,7 +84976,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] [CLSCompliant(false)] - public static void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] ref bool pointer) { throw new NotImplementedException(); } + public static void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] ref bool pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of edge flags @@ -84992,7 +84992,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glEdgeFlagPointerEXT")] [CLSCompliant(false)] - public static unsafe void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool* pointer) { throw new NotImplementedException(); } + public static unsafe void EdgeFlagPointer(Int32 stride, Int32 count, [CountAttribute(Computed = "stride,count")] bool* pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Enable or disable client-side capability @@ -85003,7 +85003,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(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Enable or disable client-side capability @@ -85014,21 +85014,21 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85036,7 +85036,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85044,7 +85044,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -85052,7 +85052,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -85060,69 +85060,69 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glEnableVariantClientStateEXT")] [CLSCompliant(false)] - public static void EnableVariantClientState(Int32 id) { throw new NotImplementedException(); } + public static void EnableVariantClientState(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glEnableVariantClientStateEXT")] [CLSCompliant(false)] - public static void EnableVariantClientState(UInt32 id) { throw new NotImplementedException(); } + public static void EnableVariantClientState(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void EnableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [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(); } + public static void EnableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glEndTransformFeedbackEXT")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glEndVertexShaderEXT")] - public static void EndVertexShader() { throw new NotImplementedException(); } + public static void EndVertexShader() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -85130,7 +85130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glExtractComponentEXT")] [CLSCompliant(false)] - public static void ExtractComponent(Int32 res, Int32 src, Int32 num) { throw new NotImplementedException(); } + public static void ExtractComponent(Int32 res, Int32 src, Int32 num) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -85138,7 +85138,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glExtractComponentEXT")] [CLSCompliant(false)] - public static void ExtractComponent(UInt32 res, UInt32 src, UInt32 num) { throw new NotImplementedException(); } + public static void ExtractComponent(UInt32 res, UInt32 src, UInt32 num) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85146,7 +85146,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85154,7 +85154,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85162,7 +85162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85170,7 +85170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Set the current fog coordinates @@ -85179,7 +85179,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoorddEXT")] - public static void FogCoord(Double coord) { throw new NotImplementedException(); } + public static void FogCoord(Double coord) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Set the current fog coordinates @@ -85189,7 +85189,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoorddvEXT")] [CLSCompliant(false)] - public static unsafe void FogCoord([CountAttribute(Count = 1)] Double* coord) { throw new NotImplementedException(); } + public static unsafe void FogCoord([CountAttribute(Count = 1)] Double* coord) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Set the current fog coordinates @@ -85198,7 +85198,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the fog distance. /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordfEXT")] - public static void FogCoord(Single coord) { throw new NotImplementedException(); } + public static void FogCoord(Single coord) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Set the current fog coordinates @@ -85208,7 +85208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordfvEXT")] [CLSCompliant(false)] - public static unsafe void FogCoord([CountAttribute(Count = 1)] Single* coord) { throw new NotImplementedException(); } + public static unsafe void FogCoord([CountAttribute(Count = 1)] Single* coord) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85224,7 +85224,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use FogPointerTypeExt overload instead")] [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] - public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85243,7 +85243,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85262,7 +85262,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85281,7 +85281,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85299,7 +85299,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85314,7 +85314,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first fog coordinate in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] - public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85332,7 +85332,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85350,7 +85350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85368,7 +85368,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_fog_coord] /// Define an array of fog coordinates @@ -85385,21 +85385,21 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_fog_coord", Version = "", EntryPoint = "glFogCoordPointerEXT")] public static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [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(); } + public static void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85407,7 +85407,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85415,7 +85415,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85423,7 +85423,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85431,7 +85431,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85439,7 +85439,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -85447,21 +85447,21 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [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(); } + public static void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -85480,7 +85480,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -85499,7 +85499,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85509,7 +85509,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85519,7 +85519,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85529,7 +85529,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85539,7 +85539,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85550,7 +85550,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// @@ -85561,7 +85561,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -85580,7 +85580,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(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -85599,7 +85599,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, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// @@ -85609,7 +85609,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// @@ -85619,7 +85619,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, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_texture_array|NV_geometry_program4] /// Attach a single layer of a texture to a framebuffer @@ -85641,7 +85641,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_array|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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_array|NV_geometry_program4] /// Attach a single layer of a texture to a framebuffer @@ -85663,7 +85663,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_array|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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate mipmaps for a specified texture target @@ -85672,34 +85672,34 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture1D, Texture2D, Texture3D, Texture1DArray, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenerateMipmapEXT")] - public static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateMultiTexMipmapEXT")] - public static void GenerateMultiTexMipmap(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateMultiTexMipmap(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [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(); } + public static void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85712,7 +85712,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85725,7 +85725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85738,7 +85738,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85751,7 +85751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85764,7 +85764,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate framebuffer object names @@ -85777,14 +85777,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersEXT")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85797,7 +85797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85810,7 +85810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85823,7 +85823,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85836,7 +85836,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85849,7 +85849,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -85862,14 +85862,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85882,7 +85882,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85895,7 +85895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85908,7 +85908,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85921,7 +85921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85934,7 +85934,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Generate renderbuffer object names @@ -85947,54 +85947,54 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersEXT")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static Int32 GenSemaphore() { throw new NotImplementedException(); } + public static Int32 GenSemaphore() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] Int32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new NotImplementedException(); } + public static void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// /// [length: count] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGenSemaphoresEXT")] [CLSCompliant(false)] - public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new NotImplementedException(); } + public static unsafe void GenSemaphores(Int32 n, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* semaphores) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -86003,7 +86003,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static Int32 GenSymbol(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -86012,14 +86012,14 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static Int32 GenSymbol(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, UInt32 components) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86032,7 +86032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86045,7 +86045,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86058,7 +86058,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86071,7 +86071,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86084,7 +86084,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Generate texture names @@ -86097,19 +86097,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glGenTexturesEXT")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenVertexShadersEXT")] [CLSCompliant(false)] - public static Int32 GenVertexShaders(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenVertexShaders(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGenVertexShadersEXT")] [CLSCompliant(false)] - public static Int32 GenVertexShaders(UInt32 range) { throw new NotImplementedException(); } + public static Int32 GenVertexShaders(UInt32 range) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86117,7 +86117,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86125,7 +86125,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86133,7 +86133,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86141,7 +86141,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86149,7 +86149,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86157,7 +86157,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86166,7 +86166,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86175,7 +86175,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86184,7 +86184,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86193,7 +86193,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86202,7 +86202,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -86211,7 +86211,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use All overload instead")] [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, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86229,7 +86229,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data containing the contents of the color table. /// [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableEXT")] - public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86250,7 +86250,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86271,7 +86271,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86292,7 +86292,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Retrieve contents of a color lookup table @@ -86312,7 +86312,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_paletted_texture", Version = "", EntryPoint = "glGetColorTableEXT")] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86328,7 +86328,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86344,7 +86344,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86360,7 +86360,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86376,7 +86376,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86392,7 +86392,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_paletted_texture] /// Get color lookup table parameters @@ -86408,7 +86408,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86416,7 +86416,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] - public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86427,7 +86427,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86438,7 +86438,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86449,7 +86449,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86459,7 +86459,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86468,7 +86468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,lod)] [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, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86479,7 +86479,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86490,7 +86490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86501,7 +86501,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86512,7 +86512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86521,7 +86521,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,lod)] [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, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86532,7 +86532,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86543,7 +86543,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86554,7 +86554,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86565,7 +86565,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86583,7 +86583,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the output image. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] - public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new NotImplementedException(); } + public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86604,7 +86604,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86625,7 +86625,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86646,7 +86646,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86666,7 +86666,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86685,7 +86685,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ConvolutionTargetExt overload instead")] [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] - public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new NotImplementedException(); } + public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86707,7 +86707,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86729,7 +86729,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86751,7 +86751,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get current 1D or 2D convolution filter kernel @@ -86772,7 +86772,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetConvolutionFilterEXT")] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86788,7 +86788,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86804,7 +86804,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86820,7 +86820,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86837,7 +86837,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86854,7 +86854,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86871,7 +86871,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86887,7 +86887,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86903,7 +86903,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86919,7 +86919,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86936,7 +86936,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86953,7 +86953,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get convolution parameters @@ -86970,7 +86970,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ConvolutionTargetExt overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86978,7 +86978,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86986,7 +86986,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -86994,7 +86994,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87002,7 +87002,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87010,7 +87010,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87018,7 +87018,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87026,7 +87026,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87034,7 +87034,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87042,7 +87042,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87050,7 +87050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87058,7 +87058,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87066,7 +87066,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87074,7 +87074,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87082,7 +87082,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87090,7 +87090,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87098,7 +87098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87106,7 +87106,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87114,7 +87114,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87122,7 +87122,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87130,7 +87130,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87138,7 +87138,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87146,7 +87146,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87154,7 +87154,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -87162,7 +87162,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Query the bindings of color numbers to user-defined varying out variables @@ -87175,7 +87175,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetFragDataLocationEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Query the bindings of color numbers to user-defined varying out variables @@ -87188,7 +87188,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetFragDataLocationEXT")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -87207,7 +87207,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -87226,7 +87226,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about attachments of a bound framebuffer object @@ -87245,7 +87245,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87261,7 +87261,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87277,7 +87277,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87293,7 +87293,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87309,7 +87309,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87325,7 +87325,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -87341,7 +87341,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87363,7 +87363,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] - public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87388,7 +87388,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87413,7 +87413,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87438,7 +87438,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87462,7 +87462,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] public static void GetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87483,7 +87483,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] - public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87507,7 +87507,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87531,7 +87531,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87555,7 +87555,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram table @@ -87578,7 +87578,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetHistogramEXT")] public static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87595,7 +87595,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87612,7 +87612,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87629,7 +87629,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use HistogramTargetExt overload instead")] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87645,7 +87645,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87661,7 +87661,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87677,7 +87677,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87694,7 +87694,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87711,7 +87711,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87728,7 +87728,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use HistogramTargetExt overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87744,7 +87744,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87760,7 +87760,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get histogram parameters @@ -87776,7 +87776,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87785,7 +87785,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87794,7 +87794,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87803,7 +87803,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [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, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87812,7 +87812,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87821,7 +87821,7 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87830,7 +87830,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetIndexedPName overload instead")] [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, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87838,7 +87838,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87846,7 +87846,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87854,7 +87854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87862,7 +87862,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87870,7 +87870,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -87878,7 +87878,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87886,7 +87886,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87894,7 +87894,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87902,7 +87902,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87910,7 +87910,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87918,7 +87918,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87926,7 +87926,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87934,7 +87934,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87942,7 +87942,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87950,7 +87950,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87958,7 +87958,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87966,7 +87966,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87974,7 +87974,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87982,7 +87982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87990,7 +87990,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -87998,7 +87998,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88006,7 +88006,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88014,7 +88014,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88022,7 +88022,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetInvariantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInvariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88030,7 +88030,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88038,7 +88038,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88046,7 +88046,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88054,7 +88054,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88062,7 +88062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88070,7 +88070,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88078,7 +88078,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88086,7 +88086,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88094,7 +88094,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88102,7 +88102,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88110,7 +88110,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88118,7 +88118,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88126,7 +88126,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88134,7 +88134,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88142,7 +88142,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88150,7 +88150,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88158,7 +88158,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -88166,7 +88166,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetLocalConstantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetLocalConstantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88174,7 +88174,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88182,7 +88182,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88190,7 +88190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88198,7 +88198,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88206,7 +88206,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -88214,7 +88214,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glGetMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88236,7 +88236,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] - public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88261,7 +88261,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88286,7 +88286,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88311,7 +88311,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88335,7 +88335,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] public static void GetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88356,7 +88356,7 @@ namespace OpenTK.Graphics.OpenGL /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] - public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88380,7 +88380,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88404,7 +88404,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88428,7 +88428,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minimum and maximum pixel values @@ -88451,7 +88451,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glGetMinmaxEXT")] public static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88468,7 +88468,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88485,7 +88485,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88502,7 +88502,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use MinmaxTargetExt overload instead")] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88518,7 +88518,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88534,7 +88534,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88550,7 +88550,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88567,7 +88567,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88584,7 +88584,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88601,7 +88601,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use MinmaxTargetExt overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88617,7 +88617,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88633,7 +88633,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Get minmax parameters @@ -88649,7 +88649,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88658,7 +88658,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88667,7 +88667,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88676,7 +88676,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88685,7 +88685,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88694,7 +88694,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88703,7 +88703,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88712,7 +88712,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88721,7 +88721,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88730,7 +88730,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88739,7 +88739,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88748,7 +88748,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88757,7 +88757,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88766,7 +88766,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88775,7 +88775,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88784,7 +88784,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88794,7 +88794,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] - 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, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88807,7 +88807,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88820,7 +88820,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88833,7 +88833,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88845,7 +88845,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] 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, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88855,7 +88855,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88865,7 +88865,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88875,7 +88875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88885,7 +88885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88895,7 +88895,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88905,7 +88905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88914,7 +88914,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88923,7 +88923,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88932,7 +88932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88941,7 +88941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88950,7 +88950,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88959,7 +88959,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88968,7 +88968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88977,7 +88977,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88986,7 +88986,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -88995,7 +88995,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89004,7 +89004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89013,7 +89013,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89021,7 +89021,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89029,7 +89029,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89037,7 +89037,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89046,7 +89046,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89055,7 +89055,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89064,7 +89064,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89072,7 +89072,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89080,7 +89080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89088,7 +89088,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89097,7 +89097,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89106,7 +89106,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89115,7 +89115,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89123,7 +89123,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89133,7 +89133,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89143,7 +89143,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89153,7 +89153,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89163,7 +89163,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89172,7 +89172,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89183,7 +89183,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89194,7 +89194,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89205,7 +89205,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89216,7 +89216,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89224,7 +89224,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89234,7 +89234,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89244,7 +89244,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89254,7 +89254,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89264,7 +89264,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89273,7 +89273,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89284,7 +89284,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89295,7 +89295,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89306,7 +89306,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89317,7 +89317,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89326,7 +89326,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89337,7 +89337,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89348,7 +89348,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89359,7 +89359,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89370,7 +89370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89379,7 +89379,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89390,7 +89390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89401,7 +89401,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89412,7 +89412,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89423,7 +89423,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89432,7 +89432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89443,7 +89443,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89454,7 +89454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89465,7 +89465,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89476,7 +89476,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89485,7 +89485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89496,7 +89496,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89507,7 +89507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89518,7 +89518,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89529,7 +89529,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89538,7 +89538,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89547,7 +89547,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89556,7 +89556,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89565,7 +89565,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89574,7 +89574,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89583,7 +89583,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89591,7 +89591,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89599,7 +89599,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89607,7 +89607,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89615,7 +89615,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89623,7 +89623,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89631,7 +89631,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89641,7 +89641,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89651,7 +89651,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramProperty overload instead")] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89660,7 +89660,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89669,7 +89669,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89679,7 +89679,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramProperty overload instead")] [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89689,7 +89689,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ProgramProperty overload instead")] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89698,7 +89698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89707,7 +89707,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89716,7 +89716,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89725,7 +89725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89734,7 +89734,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89743,7 +89743,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89752,7 +89752,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89761,7 +89761,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89770,7 +89770,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89779,7 +89779,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89788,7 +89788,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89797,7 +89797,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89806,7 +89806,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89815,7 +89815,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89824,7 +89824,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89833,7 +89833,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89842,7 +89842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89851,7 +89851,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89860,7 +89860,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89869,7 +89869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89878,7 +89878,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89887,7 +89887,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89896,7 +89896,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89905,7 +89905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,pname)] [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, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89916,7 +89916,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89927,7 +89927,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89938,7 +89938,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89949,7 +89949,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89958,7 +89958,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,pname)] [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, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89969,7 +89969,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89980,7 +89980,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -89991,7 +89991,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90002,7 +90002,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90010,7 +90010,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90018,7 +90018,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90026,7 +90026,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90034,7 +90034,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90042,7 +90042,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90050,7 +90050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90072,7 +90072,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90094,7 +90094,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90116,7 +90116,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90138,7 +90138,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90160,7 +90160,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -90182,7 +90182,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90190,7 +90190,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90198,7 +90198,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90206,7 +90206,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90214,7 +90214,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90222,7 +90222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -90230,7 +90230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90238,7 +90238,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90248,7 +90248,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90258,7 +90258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90268,7 +90268,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90278,7 +90278,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90286,7 +90286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90296,7 +90296,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90306,7 +90306,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90316,7 +90316,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90326,7 +90326,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90334,7 +90334,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new NotImplementedException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90344,7 +90344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90354,7 +90354,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90364,7 +90364,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90374,7 +90374,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90382,7 +90382,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new NotImplementedException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90392,7 +90392,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90402,7 +90402,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90412,7 +90412,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -90422,13 +90422,13 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// /// [length: 1] [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glGetPointervEXT")] - public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// @@ -90437,7 +90437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// @@ -90446,7 +90446,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// @@ -90455,7 +90455,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// @@ -90463,7 +90463,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glGetPointervEXT")] public static void GetPointer(OpenTK.Graphics.OpenGL.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90483,7 +90483,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90503,7 +90503,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90523,7 +90523,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90543,7 +90543,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90563,7 +90563,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -90583,7 +90583,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90599,7 +90599,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(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90615,7 +90615,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(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90631,7 +90631,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90647,7 +90647,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90663,7 +90663,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -90679,7 +90679,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90695,7 +90695,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90711,7 +90711,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90727,7 +90727,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90743,7 +90743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90759,7 +90759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90775,7 +90775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90791,7 +90791,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90807,7 +90807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_timer_query] /// Return parameters of a query object @@ -90823,7 +90823,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_timer_query", Version = "", EntryPoint = "glGetQueryObjectui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -90839,7 +90839,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -90855,7 +90855,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Retrieve information about a bound renderbuffer object @@ -90871,7 +90871,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90879,7 +90879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90887,7 +90887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90895,7 +90895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90903,7 +90903,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90911,7 +90911,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -90919,7 +90919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glGetSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetSemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -90943,7 +90943,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glGetSeparableFilterEXT")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new NotImplementedException(); } + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -90972,7 +90972,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -91001,7 +91001,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -91030,7 +91030,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Get separable convolution filter kernel images @@ -91058,7 +91058,7 @@ namespace OpenTK.Graphics.OpenGL where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91066,7 +91066,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91074,7 +91074,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91082,7 +91082,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91090,7 +91090,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91098,7 +91098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -91106,7 +91106,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91117,7 +91117,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,level,format,type)] [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, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91130,7 +91130,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91143,7 +91143,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91156,7 +91156,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91169,7 +91169,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91180,7 +91180,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,level,format,type)] [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, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91193,7 +91193,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91206,7 +91206,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91219,7 +91219,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91232,7 +91232,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91242,7 +91242,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91252,7 +91252,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91262,7 +91262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91272,7 +91272,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91282,7 +91282,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91292,7 +91292,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91302,7 +91302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91312,7 +91312,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91322,7 +91322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91332,7 +91332,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91342,7 +91342,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91352,7 +91352,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91361,7 +91361,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91370,7 +91370,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91379,7 +91379,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91388,7 +91388,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91397,7 +91397,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91406,7 +91406,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91415,7 +91415,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91424,7 +91424,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91433,7 +91433,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91442,7 +91442,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91451,7 +91451,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91460,7 +91460,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91469,7 +91469,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91478,7 +91478,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91487,7 +91487,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91496,7 +91496,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91505,7 +91505,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91514,7 +91514,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91523,7 +91523,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91532,7 +91532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -91541,7 +91541,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91569,7 +91569,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91597,7 +91597,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91625,7 +91625,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91653,7 +91653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91681,7 +91681,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91709,7 +91709,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.ExtTransformFeedback type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91737,7 +91737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -91765,35 +91765,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingEXT")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int32 GetUniformBufferSize(Int32 program, Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformBufferSizeEXT")] [CLSCompliant(false)] - public static Int32 GetUniformBufferSize(UInt32 program, Int32 location) { throw new NotImplementedException(); } + public static Int32 GetUniformBufferSize(UInt32 program, Int32 location) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static IntPtr GetUniformOffset(Int32 program, Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glGetUniformOffsetEXT")] [CLSCompliant(false)] - public static IntPtr GetUniformOffset(UInt32 program, Int32 location) { throw new NotImplementedException(); } + public static IntPtr GetUniformOffset(UInt32 program, Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91809,7 +91809,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91825,7 +91825,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91841,7 +91841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91857,7 +91857,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91873,7 +91873,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Returns the value of a uniform variable @@ -91889,7 +91889,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glGetUniformuivEXT")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91897,7 +91897,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91905,7 +91905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91913,7 +91913,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91921,7 +91921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91929,7 +91929,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// @@ -91937,34 +91937,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static Byte GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname) { throw new NotImplementedException(); } + public static Byte GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new NotImplementedException(); } + public static void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Byte data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object|EXT_semaphore] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_memory_object|EXT_semaphore", Version = "", EntryPoint = "glGetUnsignedBytevEXT")] [CLSCompliant(false)] - public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new NotImplementedException(); } + public static unsafe void GetUnsignedByte(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Byte* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -91972,7 +91972,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -91980,7 +91980,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -91988,7 +91988,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantBoolean(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -91996,7 +91996,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new NotImplementedException(); } + public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92004,7 +92004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new NotImplementedException(); } + public static void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92012,7 +92012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantBooleanvEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantBoolean(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92020,7 +92020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92028,7 +92028,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92036,7 +92036,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantFloat(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92044,7 +92044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new NotImplementedException(); } + public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92052,7 +92052,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new NotImplementedException(); } + public static void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92060,7 +92060,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantFloatvEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantFloat(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92068,7 +92068,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92076,7 +92076,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92084,7 +92084,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantInteger(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92092,7 +92092,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new NotImplementedException(); } + public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92100,7 +92100,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new NotImplementedException(); } + public static void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92108,7 +92108,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetVariantInteger(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92116,7 +92116,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] [CLSCompliant(false)] - public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data) { throw new NotImplementedException(); } + public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92126,7 +92126,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92136,7 +92136,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92146,7 +92146,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92156,7 +92156,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92164,7 +92164,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glGetVariantPointervEXT")] [CLSCompliant(false)] - public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data) { throw new NotImplementedException(); } + public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute, CountAttribute(Computed = "id")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92174,7 +92174,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92184,7 +92184,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92194,7 +92194,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -92204,7 +92204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [InAttribute, OutAttribute, CountAttribute(Computed = "id")] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92213,7 +92213,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92222,7 +92222,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92231,7 +92231,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92240,7 +92240,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92249,7 +92249,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92258,7 +92258,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92266,7 +92266,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92274,7 +92274,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92282,7 +92282,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92290,7 +92290,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92298,7 +92298,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92306,7 +92306,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92315,7 +92315,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92326,7 +92326,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92337,7 +92337,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92348,7 +92348,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92359,7 +92359,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92368,7 +92368,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92379,7 +92379,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92390,7 +92390,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92401,7 +92401,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92412,7 +92412,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92420,7 +92420,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92430,7 +92430,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92440,7 +92440,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92450,7 +92450,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92460,7 +92460,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92468,7 +92468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92478,7 +92478,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92488,7 +92488,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92498,7 +92498,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -92508,7 +92508,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92516,7 +92516,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92524,7 +92524,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92532,7 +92532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92540,7 +92540,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92548,7 +92548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -92556,7 +92556,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glGetVertexAttribIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92564,7 +92564,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92572,7 +92572,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92580,7 +92580,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92588,7 +92588,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92596,7 +92596,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -92604,7 +92604,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glGetVertexAttribLdvEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define histogram table @@ -92623,7 +92623,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glHistogramEXT")] - public static void Histogram(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define histogram table @@ -92641,7 +92641,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glHistogramEXT")] - public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Histogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -92650,7 +92650,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_fd] /// @@ -92659,7 +92659,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_fd", Version = "", EntryPoint = "glImportMemoryFdEXT")] [CLSCompliant(false)] - public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportMemoryF(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92668,7 +92668,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92679,7 +92679,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92690,7 +92690,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92701,7 +92701,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92712,7 +92712,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92721,7 +92721,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92732,7 +92732,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92743,7 +92743,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92754,7 +92754,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92765,7 +92765,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Handle(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 handle) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92774,7 +92774,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92785,7 +92785,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92796,7 +92796,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92807,7 +92807,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92818,7 +92818,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(Int32 memory, Int64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92827,7 +92827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object_win32", Version = "", EntryPoint = "glImportMemoryWin32NameEXT")] [CLSCompliant(false)] - public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92838,7 +92838,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92849,7 +92849,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92860,7 +92860,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T3[,,] name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object_win32] /// @@ -92871,7 +92871,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportMemoryWin32Name(UInt32 memory, UInt64 size, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T3 name) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -92879,7 +92879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_fd] /// @@ -92887,7 +92887,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_fd", Version = "", EntryPoint = "glImportSemaphoreFdEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new NotImplementedException(); } + public static void ImportSemaphoreF(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, Int32 fd) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92895,7 +92895,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92905,7 +92905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92915,7 +92915,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92925,7 +92925,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92935,7 +92935,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92943,7 +92943,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32HandleEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [OutAttribute] IntPtr handle) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92953,7 +92953,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92963,7 +92963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92973,7 +92973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92983,7 +92983,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Handle(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 handle) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -92991,7 +92991,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93001,7 +93001,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93011,7 +93011,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93021,7 +93021,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93031,7 +93031,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(Int32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93039,7 +93039,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore_win32", Version = "", EntryPoint = "glImportSemaphoreWin32NameEXT")] [CLSCompliant(false)] - public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new NotImplementedException(); } + public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, IntPtr name) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93049,7 +93049,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93059,7 +93059,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93069,7 +93069,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] T2[,,] name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore_win32] /// @@ -93079,7 +93079,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ImportSemaphoreWin32Name(UInt32 semaphore, OpenTK.Graphics.OpenGL.ExternalHandleType handleType, [InAttribute, OutAttribute] ref T2 name) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_x11_sync_object] /// @@ -93087,7 +93087,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static IntPtr ImportSync(OpenTK.Graphics.OpenGL.ExtX11SyncObject external_sync_type, IntPtr external_sync, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_x11_sync_object] /// @@ -93095,19 +93095,19 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static IntPtr ImportSync(OpenTK.Graphics.OpenGL.ExtX11SyncObject external_sync_type, IntPtr external_sync, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_index_func] /// /// [AutoGenerated(Category = "EXT_index_func", Version = "", EntryPoint = "glIndexFuncEXT")] - public static void IndexFunc(OpenTK.Graphics.OpenGL.ExtIndexFunc func, Single @ref) { throw new NotImplementedException(); } + public static void IndexFunc(OpenTK.Graphics.OpenGL.ExtIndexFunc func, Single @ref) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_index_material] /// /// [AutoGenerated(Category = "EXT_index_material", Version = "", EntryPoint = "glIndexMaterialEXT")] - public static void IndexMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ExtIndexMaterial mode) { throw new NotImplementedException(); } + public static void IndexMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ExtIndexMaterial mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93125,7 +93125,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first index in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glIndexPointerEXT")] - public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93146,7 +93146,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93167,7 +93167,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93188,7 +93188,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of color indexes @@ -93208,7 +93208,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glIndexPointerEXT")] public static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -93216,7 +93216,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glInsertComponentEXT")] [CLSCompliant(false)] - public static void InsertComponent(Int32 res, Int32 src, Int32 num) { throw new NotImplementedException(); } + public static void InsertComponent(Int32 res, Int32 src, Int32 num) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -93224,13 +93224,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glInsertComponentEXT")] [CLSCompliant(false)] - public static void InsertComponent(UInt32 res, UInt32 src, UInt32 num) { throw new NotImplementedException(); } + public static void InsertComponent(UInt32 res, UInt32 src, UInt32 num) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -93238,7 +93238,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_draw_buffers2] /// @@ -93246,21 +93246,21 @@ namespace OpenTK.Graphics.OpenGL [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, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Determine if a name corresponds to a framebuffer object @@ -93270,7 +93270,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferEXT")] [CLSCompliant(false)] - public static bool IsFramebuffer(Int32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Determine if a name corresponds to a framebuffer object @@ -93280,19 +93280,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferEXT")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(Int32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(Int32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glIsMemoryObjectEXT")] [CLSCompliant(false)] - public static bool IsMemoryObject(UInt32 memoryObject) { throw new NotImplementedException(); } + public static bool IsMemoryObject(UInt32 memoryObject) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -93302,7 +93302,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(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -93312,7 +93312,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Determine if a name corresponds to a renderbuffer object @@ -93322,7 +93322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferEXT")] [CLSCompliant(false)] - public static bool IsRenderbuffer(Int32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Determine if a name corresponds to a renderbuffer object @@ -93332,19 +93332,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferEXT")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(Int32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(Int32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glIsSemaphoreEXT")] [CLSCompliant(false)] - public static bool IsSemaphore(UInt32 semaphore) { throw new NotImplementedException(); } + public static bool IsSemaphore(UInt32 semaphore) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if a name corresponds to a texture @@ -93354,7 +93354,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glIsTextureEXT")] [CLSCompliant(false)] - public static bool IsTexture(Int32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Determine if a name corresponds to a texture @@ -93364,21 +93364,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glIsTextureEXT")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool IsVariantEnabled(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glIsVariantEnabledEXT")] [CLSCompliant(false)] - public static bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new NotImplementedException(); } + public static bool IsVariantEnabled(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -93387,7 +93387,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void LabelObject(OpenTK.Graphics.OpenGL.ExtDebugLabel type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -93396,20 +93396,20 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void LabelObject(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_compiled_vertex_array] /// /// [AutoGenerated(Category = "EXT_compiled_vertex_array", Version = "", EntryPoint = "glLockArraysEXT")] - public static void LockArrays(Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void LockArrays(Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [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.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93417,14 +93417,14 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93432,7 +93432,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93441,7 +93441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93450,7 +93450,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93459,7 +93459,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93468,7 +93468,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93479,180 +93479,180 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixFrustumEXT")] - public static void MatrixFrustum(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void MatrixFrustum(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] - public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93663,17 +93663,17 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixOrthoEXT")] - public static void MatrixOrtho(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void MatrixOrtho(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPopEXT")] - public static void MatrixPop(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixPop(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPushEXT")] - public static void MatrixPush(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixPush(OpenTK.Graphics.OpenGL.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93682,7 +93682,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatedEXT")] - public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93691,7 +93691,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatefEXT")] - public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixRotate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93699,7 +93699,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScaledEXT")] - public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93707,7 +93707,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScalefEXT")] - public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixScale(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93715,7 +93715,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatedEXT")] - public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -93723,7 +93723,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatefEXT")] - public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixTranslate(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Defines a barrier ordering memory transactions @@ -93733,7 +93733,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(); } + public static void MemoryBarrier(Int32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_shader_image_load_store] /// Defines a barrier ordering memory transactions @@ -93743,7 +93743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_shader_image_load_store", Version = "", EntryPoint = "glMemoryBarrierEXT")] [CLSCompliant(false)] - public static void MemoryBarrier(UInt32 barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(UInt32 barriers) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93751,7 +93751,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93759,7 +93759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93767,7 +93767,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(Int32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93775,7 +93775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32[] @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93783,7 +93783,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -93791,7 +93791,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glMemoryObjectParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MemoryObjectParameter(UInt32 memoryObject, OpenTK.Graphics.OpenGL.MemoryObjectParameterName pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define minmax table @@ -93807,7 +93807,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glMinmaxEXT")] - public static void Minmax(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Define minmax table @@ -93822,7 +93822,7 @@ namespace OpenTK.Graphics.OpenGL /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glMinmaxEXT")] - public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93842,7 +93842,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, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93862,7 +93862,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, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93882,7 +93882,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93901,7 +93901,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, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93920,7 +93920,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, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives from array data @@ -93939,7 +93939,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -93962,7 +93962,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, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -93987,7 +93987,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94012,7 +94012,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94037,7 +94037,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94062,7 +94062,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94085,7 +94085,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, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94110,7 +94110,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94135,7 +94135,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94160,7 +94160,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94185,7 +94185,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94208,7 +94208,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94233,7 +94233,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94258,7 +94258,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94283,7 +94283,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94308,7 +94308,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94330,7 +94330,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, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94354,7 +94354,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94378,7 +94378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94402,7 +94402,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94426,7 +94426,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94448,7 +94448,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, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94472,7 +94472,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94496,7 +94496,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94520,7 +94520,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94544,7 +94544,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94566,7 +94566,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94590,7 +94590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94614,7 +94614,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94638,7 +94638,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multi_draw_arrays] /// Render multiple sets of primitives by specifying indices of array data elements @@ -94662,7 +94662,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94671,7 +94671,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94680,7 +94680,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94689,7 +94689,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] - public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94701,7 +94701,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94713,7 +94713,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94725,7 +94725,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94736,7 +94736,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94744,7 +94744,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfEXT")] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94753,7 +94753,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94762,7 +94762,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94770,7 +94770,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnviEXT")] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94779,7 +94779,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94788,7 +94788,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94796,7 +94796,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendEXT")] - public static void MultiTexGend(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) { throw new NotImplementedException(); } + public static void MultiTexGend(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94805,7 +94805,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94814,7 +94814,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94823,7 +94823,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94831,7 +94831,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfEXT")] - public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94840,7 +94840,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94849,7 +94849,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94857,7 +94857,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGeniEXT")] - public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94866,7 +94866,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94875,7 +94875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94889,7 +94889,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94906,7 +94906,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94923,7 +94923,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94940,7 +94940,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94956,7 +94956,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] 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, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94969,7 +94969,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -94985,7 +94985,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95001,7 +95001,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95017,7 +95017,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95032,7 +95032,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] 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, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95047,7 +95047,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95065,7 +95065,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95083,7 +95083,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95101,7 +95101,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95118,7 +95118,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] 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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95132,7 +95132,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95149,7 +95149,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95166,7 +95166,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95183,7 +95183,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95199,7 +95199,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] 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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95215,7 +95215,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [Obsolete("Use int overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95234,7 +95234,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95253,7 +95253,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95272,7 +95272,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95290,7 +95290,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95305,7 +95305,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95323,7 +95323,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95341,7 +95341,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95359,7 +95359,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95376,7 +95376,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95384,7 +95384,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfEXT")] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95393,7 +95393,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95402,7 +95402,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95410,7 +95410,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameteriEXT")] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95419,7 +95419,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95428,7 +95428,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95437,7 +95437,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95446,7 +95446,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95455,7 +95455,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95464,7 +95464,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95473,7 +95473,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95482,7 +95482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95490,7 +95490,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95498,7 +95498,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95510,7 +95510,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95525,7 +95525,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95540,7 +95540,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95555,7 +95555,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95569,7 +95569,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] 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, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95583,7 +95583,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95600,7 +95600,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95617,7 +95617,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95634,7 +95634,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95650,7 +95650,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] 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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95666,7 +95666,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95685,7 +95685,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95704,7 +95704,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95723,7 +95723,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95741,7 +95741,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95750,7 +95750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95760,7 +95760,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95771,7 +95771,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95783,7 +95783,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95794,7 +95794,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95806,7 +95806,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95817,7 +95817,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95829,7 +95829,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95840,7 +95840,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95852,7 +95852,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95861,7 +95861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95871,7 +95871,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95882,7 +95882,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95894,7 +95894,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95905,7 +95905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95917,7 +95917,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95928,7 +95928,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95940,7 +95940,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95951,7 +95951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95963,7 +95963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95972,7 +95972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95982,7 +95982,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -95993,7 +95993,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96005,7 +96005,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96016,7 +96016,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96028,7 +96028,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96039,7 +96039,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96051,7 +96051,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96062,7 +96062,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96074,7 +96074,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96083,7 +96083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96093,7 +96093,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96104,7 +96104,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96116,7 +96116,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96127,7 +96127,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96139,7 +96139,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96150,7 +96150,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96162,7 +96162,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96173,7 +96173,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96185,7 +96185,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -96194,7 +96194,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -96203,7 +96203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -96212,7 +96212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -96221,7 +96221,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96230,7 +96230,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96240,7 +96240,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96250,7 +96250,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96261,7 +96261,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96273,7 +96273,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96285,7 +96285,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96296,7 +96296,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96308,7 +96308,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96320,7 +96320,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96331,7 +96331,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96343,7 +96343,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96355,7 +96355,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96366,7 +96366,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96378,7 +96378,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96390,7 +96390,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96399,7 +96399,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96409,7 +96409,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96419,7 +96419,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96430,7 +96430,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96442,7 +96442,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96454,7 +96454,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96465,7 +96465,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96477,7 +96477,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96489,7 +96489,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96500,7 +96500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96512,7 +96512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96524,7 +96524,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96535,7 +96535,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96547,7 +96547,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96559,7 +96559,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96568,7 +96568,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96578,7 +96578,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96588,7 +96588,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96599,7 +96599,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96611,7 +96611,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96623,7 +96623,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96634,7 +96634,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96646,7 +96646,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96658,7 +96658,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96669,7 +96669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96681,7 +96681,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96693,7 +96693,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96704,7 +96704,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96716,7 +96716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96728,7 +96728,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96737,7 +96737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96747,7 +96747,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96757,7 +96757,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96768,7 +96768,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96780,7 +96780,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96792,7 +96792,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96803,7 +96803,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96815,7 +96815,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96827,7 +96827,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96838,7 +96838,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96850,7 +96850,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96862,7 +96862,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96873,7 +96873,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96885,7 +96885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96897,7 +96897,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96907,7 +96907,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96917,7 +96917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(Int32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96927,7 +96927,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, Int32 size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_external_buffer] /// @@ -96937,7 +96937,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_external_buffer", Version = "", EntryPoint = "glNamedBufferStorageExternalEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorageExternal(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr clientBuffer, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -96946,7 +96946,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, Int32 size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -96955,7 +96955,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(Int32 buffer, IntPtr size, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -96964,7 +96964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, Int32 size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -96973,7 +96973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glNamedBufferStorageMemEXT")] [CLSCompliant(false)] - public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void NamedBufferStorageMem(UInt32 buffer, IntPtr size, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96982,7 +96982,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -96993,7 +96993,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97004,7 +97004,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97015,7 +97015,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97026,7 +97026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97035,7 +97035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97046,7 +97046,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97057,7 +97057,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97068,7 +97068,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97079,7 +97079,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97088,7 +97088,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97099,7 +97099,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97110,7 +97110,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97121,7 +97121,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97132,7 +97132,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97141,7 +97141,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97152,7 +97152,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97163,7 +97163,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97174,7 +97174,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97185,7 +97185,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97195,7 +97195,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97205,7 +97205,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97215,7 +97215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97225,7 +97225,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97234,7 +97234,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97242,7 +97242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97251,7 +97251,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97260,7 +97260,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97268,7 +97268,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97277,7 +97277,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97286,7 +97286,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97295,7 +97295,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97305,7 +97305,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97315,7 +97315,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97325,7 +97325,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97335,7 +97335,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97346,7 +97346,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97357,7 +97357,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97366,7 +97366,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97375,7 +97375,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97385,7 +97385,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97395,7 +97395,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97405,7 +97405,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97415,7 +97415,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97427,7 +97427,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97439,7 +97439,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97448,7 +97448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97457,7 +97457,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97466,7 +97466,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97475,7 +97475,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97484,7 +97484,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97493,7 +97493,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97505,7 +97505,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97517,7 +97517,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97526,7 +97526,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97535,7 +97535,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97544,7 +97544,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97553,7 +97553,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97562,7 +97562,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97571,7 +97571,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97583,7 +97583,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97595,7 +97595,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97604,7 +97604,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97613,7 +97613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97622,7 +97622,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97631,7 +97631,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97640,7 +97640,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97649,7 +97649,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97661,7 +97661,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97670,7 +97670,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97679,7 +97679,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97688,7 +97688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, [CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97698,7 +97698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97708,7 +97708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97718,7 +97718,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97728,7 +97728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97738,7 +97738,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97748,7 +97748,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97758,7 +97758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97768,7 +97768,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97778,7 +97778,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97788,7 +97788,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97798,7 +97798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97808,7 +97808,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97818,7 +97818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97828,7 +97828,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97838,7 +97838,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97848,7 +97848,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [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, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97860,7 +97860,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97872,7 +97872,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97884,7 +97884,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97896,7 +97896,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T4 @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97906,7 +97906,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [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, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97918,7 +97918,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97930,7 +97930,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97942,7 +97942,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97954,7 +97954,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T4 @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97964,7 +97964,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97974,7 +97974,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97983,7 +97983,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -97993,7 +97993,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98003,7 +98003,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98012,7 +98012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98023,7 +98023,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98034,7 +98034,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98045,7 +98045,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98056,7 +98056,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98066,7 +98066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98077,7 +98077,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98088,7 +98088,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -98098,7 +98098,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98116,7 +98116,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glNormalPointerEXT")] - public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98137,7 +98137,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98158,7 +98158,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98179,7 +98179,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of normals @@ -98199,14 +98199,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glNormalPointerEXT")] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride,count")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// /// /// [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glPixelTransformParameterfEXT")] - public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Single param) { throw new NotImplementedException(); } + public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -98214,14 +98214,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// /// /// [AutoGenerated(Category = "EXT_pixel_transform", Version = "", EntryPoint = "glPixelTransformParameteriEXT")] - public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_pixel_transform] /// @@ -98229,7 +98229,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTransformParameter(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_point_parameters] /// Specify point parameters @@ -98241,7 +98241,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "EXT_point_parameters", Version = "", EntryPoint = "glPointParameterfEXT")] - public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_point_parameters] /// Specify point parameters @@ -98254,7 +98254,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_point_parameters", Version = "", EntryPoint = "glPointParameterfvEXT")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_point_parameters] /// Specify point parameters @@ -98267,14 +98267,14 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_point_parameters", Version = "", EntryPoint = "glPointParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.ExtPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset] /// Set the scale and units used to calculate depth values @@ -98286,11 +98286,11 @@ namespace OpenTK.Graphics.OpenGL /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "EXT_polygon_offset", Version = "", EntryPoint = "glPolygonOffsetEXT")] - public static void PolygonOffset(Single factor, Single bias) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single bias) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98306,7 +98306,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98322,7 +98322,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98338,7 +98338,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98354,7 +98354,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Single[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98370,7 +98370,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new NotImplementedException(); } + public static void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Single priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_object] /// Set texture residence priority @@ -98386,7 +98386,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_texture_object", Version = "", EntryPoint = "glPrioritizeTexturesEXT")] [CLSCompliant(false)] - public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Single* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98395,7 +98395,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98404,7 +98404,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98413,7 +98413,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98422,7 +98422,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98431,7 +98431,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramEnvParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98440,7 +98440,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98449,7 +98449,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98458,7 +98458,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98467,7 +98467,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98476,7 +98476,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98485,7 +98485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_gpu_program_parameters", Version = "", EntryPoint = "glProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_program_parameters] /// @@ -98494,7 +98494,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameters4(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader4|EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -98510,7 +98510,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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_geometry_shader4|EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -98526,7 +98526,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98542,7 +98542,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98558,7 +98558,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98577,7 +98577,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, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98596,7 +98596,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, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98615,7 +98615,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98634,7 +98634,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98653,7 +98653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -98672,7 +98672,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98688,7 +98688,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98704,7 +98704,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98723,7 +98723,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, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98742,7 +98742,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, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98761,7 +98761,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98780,7 +98780,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98799,7 +98799,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98818,7 +98818,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98834,7 +98834,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98850,7 +98850,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98869,7 +98869,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, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98888,7 +98888,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, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98907,7 +98907,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98926,7 +98926,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98945,7 +98945,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98964,7 +98964,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98980,7 +98980,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -98999,7 +98999,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99018,7 +99018,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99037,7 +99037,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99056,7 +99056,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99075,7 +99075,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99094,7 +99094,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, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99113,7 +99113,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, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99132,7 +99132,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99151,7 +99151,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99170,7 +99170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99189,7 +99189,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99208,7 +99208,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99227,7 +99227,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99246,7 +99246,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99265,7 +99265,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99284,7 +99284,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99303,7 +99303,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99322,7 +99322,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99341,7 +99341,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99360,7 +99360,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99379,7 +99379,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99398,7 +99398,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99417,7 +99417,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99436,7 +99436,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99455,7 +99455,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99474,7 +99474,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99493,7 +99493,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99512,7 +99512,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99531,7 +99531,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99553,7 +99553,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99575,7 +99575,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99594,7 +99594,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, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99613,7 +99613,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, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99632,7 +99632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99651,7 +99651,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99670,7 +99670,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -99689,7 +99689,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99711,7 +99711,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99733,7 +99733,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99752,7 +99752,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99771,7 +99771,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99790,7 +99790,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99809,7 +99809,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99828,7 +99828,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99847,7 +99847,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99869,7 +99869,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99891,7 +99891,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99910,7 +99910,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99929,7 +99929,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99948,7 +99948,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99967,7 +99967,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -99986,7 +99986,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100005,7 +100005,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100027,7 +100027,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100046,7 +100046,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100065,7 +100065,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100084,7 +100084,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100109,7 +100109,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100134,7 +100134,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100153,7 +100153,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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100172,7 +100172,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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100191,7 +100191,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100210,7 +100210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100229,7 +100229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -100248,7 +100248,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100273,7 +100273,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100298,7 +100298,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100317,7 +100317,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100336,7 +100336,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100355,7 +100355,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100374,7 +100374,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100393,7 +100393,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100412,7 +100412,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100437,7 +100437,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100462,7 +100462,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100481,7 +100481,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100500,7 +100500,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100519,7 +100519,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100538,7 +100538,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100557,7 +100557,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100576,7 +100576,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100601,7 +100601,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100620,7 +100620,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100639,7 +100639,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -100658,7 +100658,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100668,7 +100668,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100678,7 +100678,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100688,7 +100688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100698,7 +100698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100708,7 +100708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100718,7 +100718,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100728,7 +100728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100738,7 +100738,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100748,7 +100748,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100758,7 +100758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100768,7 +100768,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100778,7 +100778,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100788,7 +100788,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100798,7 +100798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100808,7 +100808,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100818,7 +100818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100828,7 +100828,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100838,7 +100838,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100848,7 +100848,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100858,7 +100858,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100868,7 +100868,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100878,7 +100878,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100888,7 +100888,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100898,7 +100898,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100908,7 +100908,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100918,7 +100918,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100928,7 +100928,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100938,7 +100938,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100948,7 +100948,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -100958,7 +100958,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100968,7 +100968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100978,7 +100978,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100988,7 +100988,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -100998,7 +100998,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101008,7 +101008,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101018,7 +101018,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101028,7 +101028,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101038,7 +101038,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101048,7 +101048,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101058,7 +101058,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101068,7 +101068,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101078,7 +101078,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101088,7 +101088,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101098,7 +101098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101108,7 +101108,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101118,7 +101118,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101128,7 +101128,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101138,7 +101138,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101148,7 +101148,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101158,7 +101158,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101168,7 +101168,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101178,7 +101178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101188,7 +101188,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101198,7 +101198,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101208,7 +101208,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101218,7 +101218,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101228,7 +101228,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101238,7 +101238,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101248,7 +101248,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101258,7 +101258,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101268,7 +101268,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101278,7 +101278,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101288,7 +101288,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101298,7 +101298,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101308,7 +101308,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101318,7 +101318,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101328,7 +101328,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101338,7 +101338,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101348,7 +101348,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101358,7 +101358,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101368,7 +101368,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101378,7 +101378,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101388,7 +101388,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101398,7 +101398,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101408,7 +101408,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101418,7 +101418,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101428,7 +101428,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101438,7 +101438,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101448,7 +101448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101458,7 +101458,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101468,7 +101468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101478,7 +101478,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101488,7 +101488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -101498,7 +101498,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101508,7 +101508,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101518,7 +101518,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101528,7 +101528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101538,7 +101538,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101548,7 +101548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101558,7 +101558,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101568,7 +101568,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101578,7 +101578,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101588,7 +101588,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101598,7 +101598,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101608,7 +101608,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101618,7 +101618,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101628,7 +101628,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101638,7 +101638,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101648,7 +101648,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101658,7 +101658,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101668,7 +101668,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -101678,7 +101678,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101688,7 +101688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101698,7 +101698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101708,7 +101708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101718,7 +101718,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101728,7 +101728,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -101738,7 +101738,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_provoking_vertex] /// Specifiy the vertex to be used as the source of data for flat shaded varyings @@ -101747,46 +101747,46 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the vertex to be used as the source of data for flat shaded varyings. /// [AutoGenerated(Category = "EXT_provoking_vertex", Version = "", EntryPoint = "glProvokingVertexEXT")] - public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ExtProvokingVertex mode) { throw new NotImplementedException(); } + public static void ProvokingVertex(OpenTK.Graphics.OpenGL.ExtProvokingVertex mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glPushClientAttribDefaultEXT")] - public static void PushClientAttribDefault(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void PushClientAttribDefault(OpenTK.Graphics.OpenGL.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(Int32 memory, Int64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_win32_keyed_mutex] /// /// [AutoGenerated(Category = "EXT_win32_keyed_mutex", Version = "", EntryPoint = "glReleaseKeyedMutexWin32EXT")] [CLSCompliant(false)] - public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new NotImplementedException(); } + public static bool ReleaseKeyedMutexWin32(UInt32 memory, UInt64 key) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_object] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -101804,7 +101804,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_framebuffer_object", Version = "", EntryPoint = "glRenderbufferStorageEXT")] - public static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -101826,7 +101826,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use RenderbufferTarget overload instead")] [AutoGenerated(Category = "EXT_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.ExtFramebufferMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.ExtFramebufferMultisample internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.ExtFramebufferMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.ExtFramebufferMultisample internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_framebuffer_multisample] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -101847,7 +101847,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "EXT_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Reset histogram table entries to zero @@ -101857,7 +101857,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use HistogramTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glResetHistogramEXT")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target) { throw new NotImplementedException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL.ExtHistogram target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Reset histogram table entries to zero @@ -101866,7 +101866,7 @@ namespace OpenTK.Graphics.OpenGL /// Must be Histogram. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glResetHistogramEXT")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target) { throw new NotImplementedException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTargetExt target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Reset minmax table entries to initial values @@ -101876,7 +101876,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use MinmaxTargetExt overload instead")] [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glResetMinmaxEXT")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target) { throw new NotImplementedException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL.ExtHistogram target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_histogram] /// Reset minmax table entries to initial values @@ -101885,18 +101885,18 @@ namespace OpenTK.Graphics.OpenGL /// Must be Minmax. /// [AutoGenerated(Category = "EXT_histogram", Version = "", EntryPoint = "glResetMinmaxEXT")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target) { throw new NotImplementedException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTargetExt target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisample] /// /// [AutoGenerated(Category = "EXT_multisample", Version = "", EntryPoint = "glSampleMaskEXT")] - public static void SampleMask(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleMask(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_multisample] /// [AutoGenerated(Category = "EXT_multisample", Version = "", EntryPoint = "glSamplePatternEXT")] - public static void SamplePattern(OpenTK.Graphics.OpenGL.ExtMultisample pattern) { throw new NotImplementedException(); } + public static void SamplePattern(OpenTK.Graphics.OpenGL.ExtMultisample pattern) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101912,7 +101912,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bEXT")] [CLSCompliant(false)] - public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(SByte red, SByte green, SByte blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101922,7 +101922,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101932,7 +101932,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101942,7 +101942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3bvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101957,7 +101957,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dEXT")] - public static void SecondaryColor3(Double red, Double green, Double blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Double red, Double green, Double blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101967,7 +101967,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101977,7 +101977,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -101987,7 +101987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3dvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102002,7 +102002,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fEXT")] - public static void SecondaryColor3(Single red, Single green, Single blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Single red, Single green, Single blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102012,7 +102012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102022,7 +102022,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102032,7 +102032,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3fvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102047,7 +102047,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3iEXT")] - public static void SecondaryColor3(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102057,7 +102057,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102067,7 +102067,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102077,7 +102077,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ivEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102092,7 +102092,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3sEXT")] - public static void SecondaryColor3(Int16 red, Int16 green, Int16 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Int16 red, Int16 green, Int16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102102,7 +102102,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102112,7 +102112,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102122,7 +102122,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3svEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102137,7 +102137,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify new red, green, and blue values for the current secondary color. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubEXT")] - public static void SecondaryColor3(Byte red, Byte green, Byte blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(Byte red, Byte green, Byte blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102147,7 +102147,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102157,7 +102157,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102167,7 +102167,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3ubvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102183,7 +102183,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uiEXT")] [CLSCompliant(false)] - public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(UInt32 red, UInt32 green, UInt32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102193,7 +102193,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102203,7 +102203,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102213,7 +102213,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3uivEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102229,7 +102229,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usEXT")] [CLSCompliant(false)] - public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new NotImplementedException(); } + public static void SecondaryColor3(UInt16 red, UInt16 green, UInt16 blue) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102239,7 +102239,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] UInt16[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102249,7 +102249,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] [CLSCompliant(false)] - public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt16 v) { throw new NotImplementedException(); } + public static void SecondaryColor3([CountAttribute(Count = 3)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Set the current secondary color @@ -102259,7 +102259,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColor3usvEXT")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3([CountAttribute(Count = 3)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102277,7 +102277,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColorPointerEXT")] - public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102298,7 +102298,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102319,7 +102319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102340,7 +102340,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_secondary_color] /// Define an array of secondary colors @@ -102360,7 +102360,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_secondary_color", Version = "", EntryPoint = "glSecondaryColorPointerEXT")] public static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102368,7 +102368,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, Int64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102376,7 +102376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, ref Int64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, ref Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102384,7 +102384,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, Int64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(Int32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102392,7 +102392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, UInt64[] @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102400,7 +102400,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, ref UInt64 @params) { throw new NotImplementedException(); } + public static void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, ref UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102408,7 +102408,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSemaphoreParameterui64vEXT")] [CLSCompliant(false)] - public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void SemaphoreParameter(UInt32 semaphore, OpenTK.Graphics.OpenGL.SemaphoreParameterName pname, UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102438,7 +102438,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "EXT_convolution", Version = "", EntryPoint = "glSeparableFilter2DEXT")] - 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, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102472,7 +102472,7 @@ namespace OpenTK.Graphics.OpenGL 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, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102506,7 +102506,7 @@ namespace OpenTK.Graphics.OpenGL 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, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102540,7 +102540,7 @@ namespace OpenTK.Graphics.OpenGL 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, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_convolution] /// Define a separable two-dimensional convolution filter @@ -102573,7 +102573,7 @@ namespace OpenTK.Graphics.OpenGL 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, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102581,7 +102581,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] [CLSCompliant(false)] - public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new NotImplementedException(); } + public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102591,7 +102591,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102601,7 +102601,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102611,7 +102611,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102621,7 +102621,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] ref T2 addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102629,7 +102629,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetInvariantEXT")] [CLSCompliant(false)] - public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new NotImplementedException(); } + public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102639,7 +102639,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102649,7 +102649,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102659,7 +102659,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102669,7 +102669,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetInvariant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] ref T2 addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102677,7 +102677,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] [CLSCompliant(false)] - public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new NotImplementedException(); } + public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102687,7 +102687,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102697,7 +102697,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102707,7 +102707,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102717,7 +102717,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] ref T2 addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102725,7 +102725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glSetLocalConstantEXT")] [CLSCompliant(false)] - public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new NotImplementedException(); } + public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [CountAttribute(Computed = "id,type")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102735,7 +102735,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102745,7 +102745,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102755,7 +102755,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] T2[,,] addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102765,7 +102765,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SetLocalConstant(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type")] ref T2 addr) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102773,7 +102773,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ShaderOp1(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102781,7 +102781,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ShaderOp1(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102790,7 +102790,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ShaderOp2(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102799,7 +102799,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ShaderOp2(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102809,7 +102809,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ShaderOp3(OpenTK.Graphics.OpenGL.ExtVertexShader op, Int32 res, Int32 arg1, Int32 arg2, Int32 arg3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102819,7 +102819,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ShaderOp3(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102830,7 +102830,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102841,7 +102841,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102852,7 +102852,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102863,7 +102863,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102874,7 +102874,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout dstLayouts) { throw new NotImplementedException(); } + public static void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout dstLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -102885,21 +102885,21 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glSignalSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* dstLayouts) { throw new NotImplementedException(); } + public static unsafe void SignalSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* dstLayouts) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void StencilClearTag(Int32 stencilTagBits, Int32 stencilClearTag) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_stencil_clear_tag] /// /// [AutoGenerated(Category = "EXT_stencil_clear_tag", Version = "", EntryPoint = "glStencilClearTagEXT")] [CLSCompliant(false)] - public static void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag) { throw new NotImplementedException(); } + public static void StencilClearTag(Int32 stencilTagBits, UInt32 stencilClearTag) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102910,7 +102910,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -102921,7 +102921,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -102929,7 +102929,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bEXT")] [CLSCompliant(false)] - public static void Tangent3(Byte tx, Byte ty, Byte tz) { throw new NotImplementedException(); } + public static void Tangent3(Byte tx, Byte ty, Byte tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -102937,150 +102937,150 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bEXT")] [CLSCompliant(false)] - public static void Tangent3(SByte tx, SByte ty, SByte tz) { throw new NotImplementedException(); } + public static void Tangent3(SByte tx, SByte ty, SByte tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Byte[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Byte v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] SByte[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref SByte v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3bvEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dEXT")] - public static void Tangent3(Double tx, Double ty, Double tz) { throw new NotImplementedException(); } + public static void Tangent3(Double tx, Double ty, Double tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3dvEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fEXT")] - public static void Tangent3(Single tx, Single ty, Single tz) { throw new NotImplementedException(); } + public static void Tangent3(Single tx, Single ty, Single tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3fvEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3iEXT")] - public static void Tangent3(Int32 tx, Int32 ty, Int32 tz) { throw new NotImplementedException(); } + public static void Tangent3(Int32 tx, Int32 ty, Int32 tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3ivEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3sEXT")] - public static void Tangent3(Int16 tx, Int16 ty, Int16 tz) { throw new NotImplementedException(); } + public static void Tangent3(Int16 tx, Int16 ty, Int16 tz) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] [CLSCompliant(false)] - public static void Tangent3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void Tangent3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// [length: 3] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangent3svEXT")] [CLSCompliant(false)] - public static unsafe void Tangent3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void Tangent3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangentPointerEXT")] - public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -103090,7 +103090,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -103100,7 +103100,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -103110,7 +103110,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_coordinate_frame] /// @@ -103119,7 +103119,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_coordinate_frame", Version = "", EntryPoint = "glTangentPointerEXT")] public static void TangentPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -103135,7 +103135,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(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -103151,7 +103151,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103172,7 +103172,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glTexCoordPointerEXT")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103196,7 +103196,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103220,7 +103220,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103244,7 +103244,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of texture coordinates @@ -103267,7 +103267,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glTexCoordPointerEXT")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103303,7 +103303,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103342,7 +103342,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103381,7 +103381,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103420,7 +103420,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture image @@ -103458,7 +103458,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexImage3DEXT")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103466,7 +103466,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103474,7 +103474,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103482,7 +103482,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103490,7 +103490,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103498,7 +103498,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_texture_integer", Version = "", EntryPoint = "glTexParameterIuivEXT")] [CLSCompliant(false)] - public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_integer] /// @@ -103506,7 +103506,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103517,7 +103517,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103528,7 +103528,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem1DEXT")] [CLSCompliant(false)] - public static void TexStorageMem1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103540,7 +103540,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103552,7 +103552,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DEXT")] [CLSCompliant(false)] - public static void TexStorageMem2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103565,7 +103565,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103578,7 +103578,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem2DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem2DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103591,7 +103591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103604,7 +103604,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DEXT")] [CLSCompliant(false)] - public static void TexStorageMem3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103618,7 +103618,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -103632,7 +103632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTexStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TexStorageMem3DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TexStorageMem3DMultisample(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103659,7 +103659,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage1DEXT")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103689,7 +103689,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103719,7 +103719,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103749,7 +103749,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a one-dimensional texture subimage @@ -103778,7 +103778,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage1DEXT")] 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, CountAttribute(Computed = "format,type,width")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103811,7 +103811,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage2DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103847,7 +103847,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103883,7 +103883,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103919,7 +103919,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_subtexture] /// Specify a two-dimensional texture subimage @@ -103954,7 +103954,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_subtexture", Version = "", EntryPoint = "glTexSubImage2DEXT")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -103993,7 +103993,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexSubImage3DEXT")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -104035,7 +104035,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -104077,7 +104077,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -104119,7 +104119,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture3D] /// Specify a three-dimensional texture subimage @@ -104160,7 +104160,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_texture3D", Version = "", EntryPoint = "glTexSubImage3DEXT")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104170,7 +104170,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104179,7 +104179,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104189,7 +104189,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104198,7 +104198,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104210,7 +104210,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104222,7 +104222,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104233,7 +104233,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104244,7 +104244,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104256,7 +104256,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104268,7 +104268,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104279,7 +104279,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104290,7 +104290,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104305,7 +104305,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104322,7 +104322,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104339,7 +104339,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104356,7 +104356,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104373,7 +104373,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104387,7 +104387,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104403,7 +104403,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104419,7 +104419,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104435,7 +104435,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104451,7 +104451,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104466,7 +104466,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104483,7 +104483,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104500,7 +104500,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104517,7 +104517,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104534,7 +104534,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104548,7 +104548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104564,7 +104564,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104580,7 +104580,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104596,7 +104596,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104612,7 +104612,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104628,7 +104628,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104646,7 +104646,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104664,7 +104664,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104682,7 +104682,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104700,7 +104700,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104715,7 +104715,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104732,7 +104732,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104749,7 +104749,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104766,7 +104766,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104783,7 +104783,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104799,7 +104799,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104817,7 +104817,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104835,7 +104835,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104853,7 +104853,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104871,7 +104871,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104886,7 +104886,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104903,7 +104903,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104920,7 +104920,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104937,7 +104937,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104954,7 +104954,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104971,7 +104971,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -104990,7 +104990,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105009,7 +105009,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105028,7 +105028,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105047,7 +105047,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105063,7 +105063,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105081,7 +105081,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105099,7 +105099,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105117,7 +105117,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105135,7 +105135,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105152,7 +105152,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105171,7 +105171,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105190,7 +105190,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105209,7 +105209,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105228,7 +105228,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105244,7 +105244,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105262,7 +105262,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105280,7 +105280,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105298,7 +105298,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105316,23 +105316,23 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_light_texture] /// [AutoGenerated(Category = "EXT_light_texture", Version = "", EntryPoint = "glTextureLightEXT")] - public static void TextureLight(OpenTK.Graphics.OpenGL.ExtLightTexture pname) { throw new NotImplementedException(); } + public static void TextureLight(OpenTK.Graphics.OpenGL.ExtLightTexture pname) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_light_texture] /// /// [AutoGenerated(Category = "EXT_light_texture", Version = "", EntryPoint = "glTextureMaterialEXT")] - public static void TextureMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) { throw new NotImplementedException(); } + public static void TextureMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_texture_perturb_normal] /// [AutoGenerated(Category = "EXT_texture_perturb_normal", Version = "", EntryPoint = "glTextureNormalEXT")] - public static void TextureNormal(OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal mode) { throw new NotImplementedException(); } + public static void TextureNormal(OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105346,7 +105346,7 @@ namespace OpenTK.Graphics.OpenGL /// [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 commit) { throw new NotImplementedException(); } + public static void TexturePageCommitment(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105360,7 +105360,7 @@ namespace OpenTK.Graphics.OpenGL /// [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 commit) { throw new NotImplementedException(); } + public static void TexturePageCommitment(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105369,7 +105369,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105378,7 +105378,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105387,7 +105387,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105396,7 +105396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105405,7 +105405,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105414,7 +105414,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105423,7 +105423,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105432,7 +105432,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105441,7 +105441,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105450,7 +105450,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105459,7 +105459,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105468,7 +105468,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105477,7 +105477,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105486,7 +105486,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105495,7 +105495,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105504,7 +105504,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105513,7 +105513,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105522,7 +105522,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105531,7 +105531,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105540,7 +105540,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105549,7 +105549,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105557,7 +105557,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105565,7 +105565,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105576,7 +105576,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105586,7 +105586,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105597,7 +105597,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105607,7 +105607,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105619,7 +105619,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105630,7 +105630,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105642,7 +105642,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105653,7 +105653,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105666,7 +105666,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105678,7 +105678,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105691,7 +105691,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105703,7 +105703,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105716,7 +105716,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105728,7 +105728,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105741,7 +105741,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105753,7 +105753,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 levels, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105767,7 +105767,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105780,7 +105780,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105794,7 +105794,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105807,7 +105807,7 @@ namespace OpenTK.Graphics.OpenGL /// [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.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, Int32 samples, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105818,7 +105818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105829,7 +105829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem1DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105841,7 +105841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105853,7 +105853,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105866,7 +105866,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105879,7 +105879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105892,7 +105892,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105905,7 +105905,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105919,7 +105919,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, Int32 memory, Int64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_memory_object] /// @@ -105933,7 +105933,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_memory_object", Version = "", EntryPoint = "glTextureStorageMem3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new NotImplementedException(); } + public static void TextureStorageMem3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL.ExtMemoryObject internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations, UInt32 memory, UInt64 offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105946,7 +105946,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105961,7 +105961,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105976,7 +105976,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -105991,7 +105991,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106006,7 +106006,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106019,7 +106019,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width)] [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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106034,7 +106034,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106049,7 +106049,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106064,7 +106064,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106079,7 +106079,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106094,7 +106094,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106111,7 +106111,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106128,7 +106128,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106145,7 +106145,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106162,7 +106162,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106177,7 +106177,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height)] [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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106194,7 +106194,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106211,7 +106211,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106228,7 +106228,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106245,7 +106245,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106262,7 +106262,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106281,7 +106281,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106300,7 +106300,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106319,7 +106319,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106338,7 +106338,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106355,7 +106355,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(format,type,width,height,depth)] [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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106374,7 +106374,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106393,7 +106393,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106412,7 +106412,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -106431,7 +106431,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Specify values to record in transform feedback buffers @@ -106450,7 +106450,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsEXT")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_transform_feedback] /// Specify values to record in transform feedback buffers @@ -106469,7 +106469,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsEXT")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106482,7 +106482,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(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106495,7 +106495,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uiEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106511,7 +106511,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106527,7 +106527,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106543,7 +106543,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106559,7 +106559,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106575,7 +106575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106591,7 +106591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform1uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106607,7 +106607,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(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106623,7 +106623,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uiEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106639,7 +106639,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106655,7 +106655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106671,7 +106671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106687,7 +106687,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106703,7 +106703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform2uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106722,7 +106722,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(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106741,7 +106741,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106757,7 +106757,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106773,7 +106773,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106789,7 +106789,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106805,7 +106805,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106821,7 +106821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106837,7 +106837,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform3uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106859,7 +106859,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(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106881,7 +106881,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106897,7 +106897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106913,7 +106913,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106929,7 +106929,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106945,7 +106945,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106961,7 +106961,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_gpu_shader4] /// Specify the value of a uniform variable for the current program object @@ -106977,7 +106977,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_gpu_shader4", Version = "", EntryPoint = "glUniform4uivEXT")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// @@ -106985,7 +106985,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glUniformBufferEXT")] [CLSCompliant(false)] - public static void UniformBuffer(Int32 program, Int32 location, Int32 buffer) { throw new NotImplementedException(); } + public static void UniformBuffer(Int32 program, Int32 location, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_bindable_uniform] /// @@ -106993,23 +106993,23 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_bindable_uniform", Version = "", EntryPoint = "glUniformBufferEXT")] [CLSCompliant(false)] - public static void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer) { throw new NotImplementedException(); } + public static void UniformBuffer(UInt32 program, Int32 location, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_compiled_vertex_array] [AutoGenerated(Category = "EXT_compiled_vertex_array", Version = "", EntryPoint = "glUnlockArraysEXT")] - public static void UnlockArrays() { throw new NotImplementedException(); } + public static void UnlockArrays() { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool UnmapNamedBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glUnmapNamedBufferEXT")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -107025,7 +107025,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(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -107041,21 +107041,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UseShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [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, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -107065,7 +107065,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(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -107075,154 +107075,154 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] SByte[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] SByte[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref SByte addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref SByte addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantbvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] SByte* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] SByte* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Double[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Double[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Double addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Double addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Double* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Double* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Double[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Double[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Double addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Double addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantdvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Double* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Double* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Single[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Single[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Single addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Single addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Single* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Single* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Single[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Single[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Single addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Single addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantfvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Single* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Single* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Int32[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Int32[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Int32 addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Int32 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Int32* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Int32* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int32[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int32[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Int32 addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Int32 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantivEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int32* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int32* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107231,7 +107231,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type,stride)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] [CLSCompliant(false)] - public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr) { throw new NotImplementedException(); } + public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107242,7 +107242,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107253,7 +107253,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[,] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107264,7 +107264,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[,,] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107275,7 +107275,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(Int32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] ref T3 addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107284,7 +107284,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,type,stride)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantPointerEXT")] [CLSCompliant(false)] - public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr) { throw new NotImplementedException(); } + public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [CountAttribute(Computed = "id,type,stride")] IntPtr addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107295,7 +107295,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107306,7 +107306,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[,] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107317,7 +107317,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] T3[,,] addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -107328,133 +107328,133 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VariantPointer(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "id,type,stride")] ref T3 addr) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Int16[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Int16[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Int16 addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Int16 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Int16* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Int16* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int16[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int16[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Int16 addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Int16 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantsvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int16* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Int16* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Byte[] addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] Byte[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Byte addr) { throw new NotImplementedException(); } + public static void Variant(Int32 id, [CountAttribute(Computed = "id")] ref Byte addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Byte* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(Int32 id, [CountAttribute(Computed = "id")] Byte* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Byte[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] Byte[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Byte addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref Byte addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantubvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Byte* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] Byte* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt32[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt32[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref UInt32 addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref UInt32 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantuivEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt32* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt32* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt16[] addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt16[] addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] [CLSCompliant(false)] - public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref UInt16 addr) { throw new NotImplementedException(); } + public static void Variant(UInt32 id, [CountAttribute(Computed = "id")] ref UInt16 addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// /// [length: COMPSIZE(id)] [AutoGenerated(Category = "EXT_vertex_shader", Version = "", EntryPoint = "glVariantusvEXT")] [CLSCompliant(false)] - public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt16* addr) { throw new NotImplementedException(); } + public static unsafe void Variant(UInt32 id, [CountAttribute(Computed = "id")] UInt16* addr) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107464,7 +107464,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayBindVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107474,7 +107474,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayBindVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107485,7 +107485,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107496,7 +107496,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107505,7 +107505,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayEdgeFlagOffset(Int32 vaobj, Int32 buffer, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107514,7 +107514,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayEdgeFlagOffset(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107524,7 +107524,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayFogCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107534,7 +107534,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayFogCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107544,7 +107544,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayIndexOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107554,7 +107554,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayIndexOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107566,7 +107566,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107578,7 +107578,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107588,7 +107588,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayNormalOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107598,7 +107598,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayNormalOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107609,7 +107609,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArraySecondaryColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107620,7 +107620,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArraySecondaryColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107631,7 +107631,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayTexCoordOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107642,7 +107642,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayTexCoordOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107650,7 +107650,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107658,7 +107658,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107666,7 +107666,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107674,7 +107674,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107685,7 +107685,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107696,7 +107696,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107706,7 +107706,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107716,7 +107716,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107728,7 +107728,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107740,7 +107740,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107750,7 +107750,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107760,7 +107760,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107772,7 +107772,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107785,7 +107785,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ExtDirectStateAccess overload instead")] [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.ExtVertexAttrib64bit type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107797,7 +107797,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtDirectStateAccess type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107810,7 +107810,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ExtDirectStateAccess overload instead")] [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.ExtVertexAttrib64bit type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107823,7 +107823,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107836,7 +107836,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107844,7 +107844,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107852,7 +107852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107863,7 +107863,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -107874,49 +107874,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexArrayVertexOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribI1(Int32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1iEXT")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1uiEXT")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI1uivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -107924,7 +107924,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2iEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -107932,49 +107932,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2iEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -107982,28 +107982,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uiEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI2uivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108012,7 +108012,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108021,49 +108021,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108072,49 +108072,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI3uivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4bvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108124,7 +108124,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108134,133 +108134,133 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4svEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4ubvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108270,49 +108270,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4uivEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_program4", Version = "", EntryPoint = "glVertexAttribI4usvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108322,7 +108322,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108334,7 +108334,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108346,7 +108346,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108358,7 +108358,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108370,7 +108370,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108380,7 +108380,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108392,7 +108392,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108404,7 +108404,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108416,7 +108416,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program4] /// @@ -108428,35 +108428,35 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexProgram4 type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribL1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dEXT")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 1] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 1] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL1dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108464,7 +108464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108472,49 +108472,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 2] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL2dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108523,7 +108523,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108532,49 +108532,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 3] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL3dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108584,7 +108584,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108594,49 +108594,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// /// [length: 4] [AutoGenerated(Category = "EXT_vertex_attrib_64bit", Version = "", EntryPoint = "glVertexAttribL4dvEXT")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108646,7 +108646,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [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, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108658,7 +108658,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108670,7 +108670,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108682,7 +108682,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108694,7 +108694,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108704,7 +108704,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: size] [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, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108716,7 +108716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108728,7 +108728,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108740,7 +108740,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_attrib_64bit] /// @@ -108752,7 +108752,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108773,7 +108773,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0. /// [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glVertexPointerEXT")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [CountAttribute(Computed = "size,type,stride,count")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108797,7 +108797,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108821,7 +108821,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108845,7 +108845,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_array] /// Define an array of vertex data @@ -108868,18 +108868,18 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_array", Version = "", EntryPoint = "glVertexPointerEXT")] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, Int32 count, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride,count")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightfEXT")] - public static void VertexWeight(Single weight) { throw new NotImplementedException(); } + public static void VertexWeight(Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// [length: 1] [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightfvEXT")] [CLSCompliant(false)] - public static unsafe void VertexWeight([CountAttribute(Count = 1)] Single* weight) { throw new NotImplementedException(); } + public static unsafe void VertexWeight([CountAttribute(Count = 1)] Single* weight) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108887,7 +108887,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightPointerEXT")] - public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108898,7 +108898,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108909,7 +108909,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108920,7 +108920,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T3[,,] pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_weighting] /// @@ -108930,7 +108930,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "EXT_vertex_weighting", Version = "", EntryPoint = "glVertexWeightPointerEXT")] public static void VertexWeightPointer(Int32 size, OpenTK.Graphics.OpenGL.ExtVertexWeighting type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T3 pointer) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108941,7 +108941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32[] buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108952,7 +108952,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref Int32 buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref Int32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108963,7 +108963,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(Int32 semaphore, Int32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] Int32* buffers, Int32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] Int32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108974,7 +108974,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32[] buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32[] textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout[] srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108985,7 +108985,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout srcLayouts) { throw new NotImplementedException(); } + public static void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] ref UInt32 buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] ref UInt32 textures, [CountAttribute(Computed = "numTextureBarriers")] ref OpenTK.Graphics.OpenGL.TextureLayout srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_semaphore] /// @@ -108996,7 +108996,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numTextureBarriers)] [AutoGenerated(Category = "EXT_semaphore", Version = "", EntryPoint = "glWaitSemaphoreEXT")] [CLSCompliant(false)] - public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* srcLayouts) { throw new NotImplementedException(); } + public static unsafe void WaitSemaphore(UInt32 semaphore, UInt32 numBufferBarriers, [CountAttribute(Computed = "numBufferBarriers")] UInt32* buffers, UInt32 numTextureBarriers, [CountAttribute(Computed = "numTextureBarriers")] UInt32* textures, [CountAttribute(Computed = "numTextureBarriers")] OpenTK.Graphics.OpenGL.TextureLayout* srcLayouts) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -109004,7 +109004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -109012,7 +109012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -109020,7 +109020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.OpenGL.ExtWindowRectangles mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -109031,7 +109031,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: EXT_vertex_shader] /// @@ -109042,7 +109042,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } } @@ -109050,13 +109050,13 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: GREMEDY_frame_terminator] [AutoGenerated(Category = "GREMEDY_frame_terminator", Version = "", EntryPoint = "glFrameTerminatorGREMEDY")] - public static void FrameTerminator() { throw new NotImplementedException(); } + public static void FrameTerminator() { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// /// [length: len] [AutoGenerated(Category = "GREMEDY_string_marker", Version = "", EntryPoint = "glStringMarkerGREMEDY")] - public static void StringMarker(Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void StringMarker(Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// @@ -109065,7 +109065,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T1[] @string) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// @@ -109074,7 +109074,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T1[,] @string) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// @@ -109083,7 +109083,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StringMarker(Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T1[,,] @string) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: GREMEDY_string_marker] /// @@ -109091,7 +109091,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "GREMEDY_string_marker", Version = "", EntryPoint = "glStringMarkerGREMEDY")] public static void StringMarker(Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T1 @string) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -109103,7 +109103,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109111,7 +109111,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109119,7 +109119,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109127,7 +109127,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109135,7 +109135,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109143,14 +109143,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// /// /// [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterfHP")] - public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Single param) { throw new NotImplementedException(); } + public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109158,7 +109158,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterfvHP")] [CLSCompliant(false)] - public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109166,14 +109166,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// /// /// [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameteriHP")] - public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Int32 param) { throw new NotImplementedException(); } + public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109181,7 +109181,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "HP_image_transform", Version = "", EntryPoint = "glImageTransformParameterivHP")] [CLSCompliant(false)] - public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: HP_image_transform] /// @@ -109189,7 +109189,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ImageTransformParameter(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } } @@ -109202,7 +109202,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glColorPointerListIBM")] - public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109214,7 +109214,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109226,7 +109226,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109238,7 +109238,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109249,7 +109249,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glColorPointerListIBM")] public static void ColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109257,7 +109257,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] [CLSCompliant(false)] - public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] bool*[] pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] bool*[] pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109265,7 +109265,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] [CLSCompliant(false)] - public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] ref bool* pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] ref bool* pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109273,12 +109273,12 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glEdgeFlagPointerListIBM")] [CLSCompliant(false)] - public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] bool** pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static unsafe void EdgeFlagPointerList(Int32 stride, [CountAttribute(Computed = "stride")] bool** pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_static_data] /// [AutoGenerated(Category = "IBM_static_data", Version = "", EntryPoint = "glFlushStaticDataIBM")] - public static void FlushStaticData(OpenTK.Graphics.OpenGL.IbmStaticData target) { throw new NotImplementedException(); } + public static void FlushStaticData(OpenTK.Graphics.OpenGL.IbmStaticData target) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109286,7 +109286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] - public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109297,7 +109297,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109308,7 +109308,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109319,7 +109319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109329,7 +109329,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109338,7 +109338,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use FogPointerType overload instead")] [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] - public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109350,7 +109350,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109362,7 +109362,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109374,7 +109374,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109385,7 +109385,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glFogCoordPointerListIBM")] public static void FogCoordPointerList(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109393,7 +109393,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glIndexPointerListIBM")] - public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109404,7 +109404,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109415,7 +109415,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109426,7 +109426,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109436,7 +109436,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glIndexPointerListIBM")] public static void IndexPointerList(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109446,7 +109446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] [CLSCompliant(false)] - public static void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] first, [CountAttribute(Computed = "primcount")] Int32[] count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109456,7 +109456,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] [CLSCompliant(false)] - public static void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 first, [CountAttribute(Computed = "primcount")] ref Int32 count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109466,7 +109466,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawArraysIBM")] [CLSCompliant(false)] - public static unsafe void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static unsafe void MultiModeDrawArrays([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* first, [CountAttribute(Computed = "primcount")] Int32* count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109477,7 +109477,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] [CLSCompliant(false)] - public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109490,7 +109490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109503,7 +109503,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109516,7 +109516,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109529,7 +109529,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType[] mode, [CountAttribute(Computed = "primcount")] Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109540,7 +109540,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] [CLSCompliant(false)] - public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109553,7 +109553,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109566,7 +109566,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109579,7 +109579,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109592,7 +109592,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiModeDrawElements([CountAttribute(Computed = "primcount")] ref OpenTK.Graphics.OpenGL.PrimitiveType mode, [CountAttribute(Computed = "primcount")] ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109603,7 +109603,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "IBM_multimode_draw_arrays", Version = "", EntryPoint = "glMultiModeDrawElementsIBM")] [CLSCompliant(false)] - public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [CountAttribute(Computed = "primcount")] IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109616,7 +109616,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109629,7 +109629,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109642,7 +109642,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] T3[,,] indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_multimode_draw_arrays] /// [length: COMPSIZE(primcount)] @@ -109655,7 +109655,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void MultiModeDrawElements([CountAttribute(Computed = "primcount")] OpenTK.Graphics.OpenGL.PrimitiveType* mode, [CountAttribute(Computed = "primcount")] Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "primcount")] ref T3 indices, Int32 primcount, Int32 modestride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109663,7 +109663,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glNormalPointerListIBM")] - public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109674,7 +109674,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109685,7 +109685,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109696,7 +109696,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109706,7 +109706,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glNormalPointerListIBM")] public static void NormalPointerList(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer, Int32 ptrstride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109715,7 +109715,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glSecondaryColorPointerListIBM")] - public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109727,7 +109727,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109739,7 +109739,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109751,7 +109751,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109762,7 +109762,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glSecondaryColorPointerListIBM")] public static void SecondaryColorPointerList(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109771,7 +109771,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glTexCoordPointerListIBM")] - public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109783,7 +109783,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109795,7 +109795,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109807,7 +109807,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109818,7 +109818,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glTexCoordPointerListIBM")] public static void TexCoordPointerList(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109827,7 +109827,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(size,type,stride)] /// [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glVertexPointerListIBM")] - public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new NotImplementedException(); } + public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer, Int32 ptrstride) { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109839,7 +109839,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109851,7 +109851,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109863,7 +109863,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T3[,,] pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: IBM_vertex_array_lists] /// @@ -109874,7 +109874,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IBM_vertex_array_lists", Version = "", EntryPoint = "glVertexPointerListIBM")] public static void VertexPointerList(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T3 pointer, Int32 ptrstride) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -109897,7 +109897,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use IngrBlendFuncSeparate overload instead")] [AutoGenerated(Category = "INGR_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateINGR")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: INGR_blend_func_separate] /// Specify pixel arithmetic for RGB and alpha components separately @@ -109915,7 +109915,7 @@ namespace OpenTK.Graphics.OpenGL /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "INGR_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateINGR")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate dfactorAlpha) { throw new BindingsNotRewrittenException(); } } @@ -109925,13 +109925,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -109946,7 +109946,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first component of the first color element in the array. The initial value is 0. /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glColorPointervINTEL")] - public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new NotImplementedException(); } + public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -109964,7 +109964,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -109982,7 +109982,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -110000,7 +110000,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of colors @@ -110017,168 +110017,168 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glColorPointervINTEL")] public static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110194,7 +110194,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110210,7 +110210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110226,7 +110226,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110242,7 +110242,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110258,7 +110258,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110274,7 +110274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110284,7 +110284,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110294,7 +110294,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110304,7 +110304,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110316,7 +110316,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110328,7 +110328,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110340,7 +110340,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110352,7 +110352,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110364,7 +110364,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110376,7 +110376,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110388,7 +110388,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110400,7 +110400,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110412,7 +110412,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110424,7 +110424,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110436,7 +110436,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110448,7 +110448,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110458,7 +110458,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110468,7 +110468,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110478,7 +110478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110490,7 +110490,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110502,7 +110502,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110514,7 +110514,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110526,7 +110526,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110538,7 +110538,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110550,7 +110550,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110562,7 +110562,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110574,7 +110574,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110586,7 +110586,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110598,7 +110598,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110610,7 +110610,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110622,55 +110622,55 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110682,7 +110682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110694,7 +110694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110706,7 +110706,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110718,7 +110718,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110730,7 +110730,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -110742,7 +110742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -110752,7 +110752,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] [CLSCompliant(false)] - public static IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute, CountAttribute(Count = 1)] out Int32 stride, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new NotImplementedException(); } + public static IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute, CountAttribute(Count = 1)] out Int32 stride, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -110762,7 +110762,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] [CLSCompliant(false)] - public static unsafe IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new NotImplementedException(); } + public static unsafe IntPtr MapTexture2D(Int32 texture, Int32 level, Int32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -110772,7 +110772,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] [CLSCompliant(false)] - public static IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] out Int32 stride, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new NotImplementedException(); } + public static IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] out Int32 stride, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.IntelMapTexture layout) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// @@ -110782,7 +110782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glMapTexture2DINTEL")] [CLSCompliant(false)] - public static unsafe IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new NotImplementedException(); } + public static unsafe IntPtr MapTexture2D(UInt32 texture, Int32 level, UInt32 access, [OutAttribute, CountAttribute(Count = 1)] Int32* stride, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.IntelMapTexture* layout) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110794,7 +110794,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0. /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glNormalPointervINTEL")] - public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new NotImplementedException(); } + public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110809,7 +110809,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110824,7 +110824,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110839,7 +110839,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of normals @@ -110853,19 +110853,19 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glNormalPointervINTEL")] public static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glSyncTextureINTEL")] [CLSCompliant(false)] - public static void SyncTexture(Int32 texture) { throw new NotImplementedException(); } + public static void SyncTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glSyncTextureINTEL")] [CLSCompliant(false)] - public static void SyncTexture(UInt32 texture) { throw new NotImplementedException(); } + public static void SyncTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110880,7 +110880,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0. /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glTexCoordPointervINTEL")] - public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new NotImplementedException(); } + public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110898,7 +110898,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110916,7 +110916,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110934,7 +110934,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of texture coordinates @@ -110951,21 +110951,21 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glTexCoordPointervINTEL")] public static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UnmapTexture2D(Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_map_texture] /// /// [AutoGenerated(Category = "INTEL_map_texture", Version = "", EntryPoint = "glUnmapTexture2DINTEL")] [CLSCompliant(false)] - public static void UnmapTexture2D(UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void UnmapTexture2D(UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -110980,7 +110980,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0. /// [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glVertexPointervINTEL")] - public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [CountAttribute(Count = 4)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -110998,7 +110998,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -111016,7 +111016,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -111034,7 +111034,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_parallel_arrays] /// Define an array of vertex data @@ -111051,7 +111051,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "INTEL_parallel_arrays", Version = "", EntryPoint = "glVertexPointervINTEL")] public static void VertexPointer(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, [InAttribute, OutAttribute, CountAttribute(Count = 4)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -111059,7 +111059,7 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111071,7 +111071,7 @@ namespace OpenTK.Graphics.OpenGL /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111086,7 +111086,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111101,7 +111101,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111116,7 +111116,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -111130,7 +111130,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111155,7 +111155,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111180,7 +111180,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111205,7 +111205,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111230,7 +111230,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, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111255,7 +111255,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 UInt32 ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -111280,7 +111280,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -111305,7 +111305,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -111330,7 +111330,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, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111361,7 +111361,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111392,7 +111392,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111423,7 +111423,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111454,7 +111454,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111485,7 +111485,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL.KhrDebug severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -111516,11 +111516,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL.KhrDebug* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.OpenGL.KhrRobustness GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.KhrRobustness GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111529,7 +111529,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111538,7 +111538,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111547,7 +111547,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111556,7 +111556,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111565,7 +111565,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111574,7 +111574,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111583,7 +111583,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111592,7 +111592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111601,7 +111601,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111610,7 +111610,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111619,7 +111619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111628,7 +111628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111637,7 +111637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111646,7 +111646,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -111655,7 +111655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111677,7 +111677,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111699,7 +111699,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111721,7 +111721,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111743,7 +111743,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111765,7 +111765,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -111787,7 +111787,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111807,7 +111807,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111827,7 +111827,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111847,7 +111847,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111869,7 +111869,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111891,7 +111891,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111913,7 +111913,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111935,7 +111935,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111957,7 +111957,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -111979,7 +111979,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112001,7 +112001,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112023,7 +112023,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112045,7 +112045,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112067,7 +112067,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112089,7 +112089,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -112111,13 +112111,13 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -112126,7 +112126,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -112135,7 +112135,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -112144,7 +112144,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -112152,7 +112152,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.OpenGL.KhrDebug pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -112171,7 +112171,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(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -112190,7 +112190,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL.KhrDebug identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112205,7 +112205,7 @@ namespace OpenTK.Graphics.OpenGL /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112223,7 +112223,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112241,7 +112241,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112259,7 +112259,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -112276,13 +112276,13 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -112301,7 +112301,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(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -112320,7 +112320,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL.KhrDebug source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112332,7 +112332,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112347,7 +112347,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112362,7 +112362,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112377,7 +112377,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -112391,7 +112391,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -112399,7 +112399,7 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: MESA_resize_buffers] [AutoGenerated(Category = "MESA_resize_buffers", Version = "", EntryPoint = "glResizeBuffersMESA")] - public static void ResizeBuffers() { throw new NotImplementedException(); } + public static void ResizeBuffers() { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112411,7 +112411,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dMESA")] - public static void WindowPos2(Double x, Double y) { throw new NotImplementedException(); } + public static void WindowPos2(Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112421,7 +112421,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112431,7 +112431,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112441,7 +112441,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2dvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112453,7 +112453,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fMESA")] - public static void WindowPos2(Single x, Single y) { throw new NotImplementedException(); } + public static void WindowPos2(Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112463,7 +112463,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112473,7 +112473,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112483,7 +112483,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2fvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112495,7 +112495,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2iMESA")] - public static void WindowPos2(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112505,7 +112505,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112515,7 +112515,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112525,7 +112525,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2ivMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112537,7 +112537,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2sMESA")] - public static void WindowPos2(Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void WindowPos2(Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112547,7 +112547,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112557,7 +112557,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] [CLSCompliant(false)] - public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos2([CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112567,7 +112567,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos2svMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos2([CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112582,7 +112582,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dMESA")] - public static void WindowPos3(Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void WindowPos3(Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112592,7 +112592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112602,7 +112602,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112612,7 +112612,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3dvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112627,7 +112627,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fMESA")] - public static void WindowPos3(Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void WindowPos3(Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112637,7 +112637,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112647,7 +112647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112657,7 +112657,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3fvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112672,7 +112672,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3iMESA")] - public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112682,7 +112682,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112692,7 +112692,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112702,7 +112702,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3ivMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112717,7 +112717,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the , , coordinates for the raster position. /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3sMESA")] - public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new NotImplementedException(); } + public static void WindowPos3(Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112727,7 +112727,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112737,7 +112737,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] [CLSCompliant(false)] - public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos3([CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112747,7 +112747,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos3svMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos3([CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112763,7 +112763,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dMESA")] - public static void WindowPos4(Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void WindowPos4(Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112773,7 +112773,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112783,7 +112783,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112793,7 +112793,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4dvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos4([CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos4([CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112809,7 +112809,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fMESA")] - public static void WindowPos4(Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void WindowPos4(Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112819,7 +112819,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112829,7 +112829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112839,7 +112839,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4fvMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos4([CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos4([CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112855,7 +112855,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4iMESA")] - public static void WindowPos4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void WindowPos4(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112865,7 +112865,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112875,7 +112875,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112885,7 +112885,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4ivMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos4([CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos4([CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112901,7 +112901,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4sMESA")] - public static void WindowPos4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new NotImplementedException(); } + public static void WindowPos4(Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112911,7 +112911,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112921,7 +112921,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] [CLSCompliant(false)] - public static void WindowPos4([CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void WindowPos4([CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: MESA_window_pos] /// Specify the raster position in window coordinates for pixel operations @@ -112931,7 +112931,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "MESA_window_pos", Version = "", EntryPoint = "glWindowPos4svMESA")] [CLSCompliant(false)] - public static unsafe void WindowPos4([CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void WindowPos4([CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } } @@ -112942,19 +112942,19 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glActiveVaryingNV")] [CLSCompliant(false)] - public static void ActiveVarying(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void ActiveVarying(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glActiveVaryingNV")] [CLSCompliant(false)] - public static void ActiveVarying(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void ActiveVarying(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_alpha_to_coverage_dither_control] /// [AutoGenerated(Category = "NV_alpha_to_coverage_dither_control", Version = "", EntryPoint = "glAlphaToCoverageDitherControlNV")] - public static void AlphaToCoverageDitherControl(OpenTK.Graphics.OpenGL.NvAlphaToCoverageDitherControl mode) { throw new NotImplementedException(); } + public static void AlphaToCoverageDitherControl(OpenTK.Graphics.OpenGL.NvAlphaToCoverageDitherControl mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112962,7 +112962,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112970,7 +112970,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112978,7 +112978,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static unsafe bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112986,7 +112986,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new NotImplementedException(); } + public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs, [OutAttribute, CountAttribute(Parameter = "n")] bool[] residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -112994,7 +112994,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new NotImplementedException(); } + public static bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs, [OutAttribute, CountAttribute(Parameter = "n")] out bool residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -113002,7 +113002,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glAreProgramsResidentNV")] [CLSCompliant(false)] - public static unsafe bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new NotImplementedException(); } + public static unsafe bool AreProgramsResident(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs, [OutAttribute, CountAttribute(Parameter = "n")] bool* residences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -113015,7 +113015,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(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -113028,19 +113028,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glBeginOcclusionQueryNV")] [CLSCompliant(false)] - public static void BeginOcclusionQuery(Int32 id) { throw new NotImplementedException(); } + public static void BeginOcclusionQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glBeginOcclusionQueryNV")] [CLSCompliant(false)] - public static void BeginOcclusionQuery(UInt32 id) { throw new NotImplementedException(); } + public static void BeginOcclusionQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Start transform feedback operation @@ -113049,19 +113049,19 @@ namespace OpenTK.Graphics.OpenGL /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glBeginTransformFeedbackNV")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback primitiveMode) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void BeginVideoCapture(Int32 video_capture_slot) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glBeginVideoCaptureNV")] [CLSCompliant(false)] - public static void BeginVideoCapture(UInt32 video_capture_slot) { throw new NotImplementedException(); } + public static void BeginVideoCapture(UInt32 video_capture_slot) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -113077,7 +113077,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(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a buffer object to an indexed buffer target @@ -113093,7 +113093,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -113102,7 +113102,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -113111,7 +113111,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBufferOffset(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113133,7 +113133,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, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113155,7 +113155,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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113177,7 +113177,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Bind a range within a buffer object to an indexed buffer target @@ -113199,21 +113199,21 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glBindProgramNV")] [CLSCompliant(false)] - public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id) { throw new NotImplementedException(); } + public static void BindProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Bind a transform feedback object @@ -113226,7 +113226,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(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Bind a transform feedback object @@ -113239,7 +113239,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glBindTransformFeedbackNV")] [CLSCompliant(false)] - public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Bind a transform feedback object @@ -113253,7 +113253,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(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Bind a transform feedback object @@ -113267,7 +113267,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, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113276,7 +113276,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindVideoCaptureStreamBuffer(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113285,7 +113285,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BindVideoCaptureStreamBuffer(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture frame_region, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113295,7 +113295,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -113305,17 +113305,17 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -113324,7 +113324,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, Int32 length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, Int32 index, Int64 address, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -113333,7 +113333,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, Int32 index, Int64 address, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -113342,7 +113342,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, Int32 length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, UInt32 index, UInt64 address, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -113351,19 +113351,19 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory pname, UInt32 index, UInt64 address, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCallCommandListNV")] [CLSCompliant(false)] - public static void CallCommandList(Int32 list) { throw new NotImplementedException(); } + public static void CallCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCallCommandListNV")] [CLSCompliant(false)] - public static void CallCommandList(UInt32 list) { throw new NotImplementedException(); } + public static void CallCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_depth_buffer_float] /// Specify the clear value for the depth buffer @@ -113372,32 +113372,32 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "NV_depth_buffer_float", Version = "", EntryPoint = "glClearDepthdNV")] - public static void ClearDepth(Double depth) { throw new NotImplementedException(); } + public static void ClearDepth(Double depth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hNV")] - public static void Color3h(Half red, Half green, Half blue) { throw new NotImplementedException(); } + public static void Color3h(Half red, Half green, Half blue) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] [CLSCompliant(false)] - public static void Color3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void Color3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] [CLSCompliant(false)] - public static void Color3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void Color3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor3hvNV")] [CLSCompliant(false)] - public static unsafe void Color3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Color3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -113405,32 +113405,32 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hNV")] - public static void Color4h(Half red, Half green, Half blue, Half alpha) { throw new NotImplementedException(); } + public static void Color4h(Half red, Half green, Half blue, Half alpha) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] [CLSCompliant(false)] - public static void Color4h([CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void Color4h([CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] [CLSCompliant(false)] - public static void Color4h([CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void Color4h([CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glColor4hvNV")] [CLSCompliant(false)] - public static unsafe void Color4h([CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Color4h([CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glColorFormatNV")] - public static void ColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void ColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -113440,7 +113440,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerInputNV")] - public static void CombinerInput(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage) { throw new NotImplementedException(); } + public static void CombinerInput(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -113454,47 +113454,47 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerOutputNV")] - public static void CombinerOutput(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners abOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners cdOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners sumOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners scale, OpenTK.Graphics.OpenGL.NvRegisterCombiners bias, bool abDotProduct, bool cdDotProduct, bool muxSum) { throw new NotImplementedException(); } + public static void CombinerOutput(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners abOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners cdOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners sumOutput, OpenTK.Graphics.OpenGL.NvRegisterCombiners scale, OpenTK.Graphics.OpenGL.NvRegisterCombiners bias, bool abDotProduct, bool cdDotProduct, bool muxSum) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterfNV")] - public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Single param) { throw new NotImplementedException(); } + public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterfvNV")] [CLSCompliant(false)] - public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterfvNV")] [CLSCompliant(false)] - public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameteriNV")] - public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Int32 param) { throw new NotImplementedException(); } + public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterivNV")] [CLSCompliant(false)] - public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glCombinerParameterivNV")] [CLSCompliant(false)] - public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void CombinerParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -113502,7 +113502,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glCombinerStageParameterfvNV")] [CLSCompliant(false)] - public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -113510,7 +113510,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_register_combiners2", Version = "", EntryPoint = "glCombinerStageParameterfvNV")] [CLSCompliant(false)] - public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -113518,45 +113518,45 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void CombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCommandListSegmentsNV")] [CLSCompliant(false)] - public static void CommandListSegments(Int32 list, Int32 segments) { throw new NotImplementedException(); } + public static void CommandListSegments(Int32 list, Int32 segments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCommandListSegmentsNV")] [CLSCompliant(false)] - public static void CommandListSegments(UInt32 list, UInt32 segments) { throw new NotImplementedException(); } + public static void CommandListSegments(UInt32 list, UInt32 segments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCompileCommandListNV")] [CLSCompliant(false)] - public static void CompileCommandList(Int32 list) { throw new NotImplementedException(); } + public static void CompileCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCompileCommandListNV")] [CLSCompliant(false)] - public static void CompileCommandList(UInt32 list) { throw new NotImplementedException(); } + public static void CompileCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_dilate] /// /// [AutoGenerated(Category = "NV_conservative_raster_dilate", Version = "", EntryPoint = "glConservativeRasterParameterfNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL.NvConservativeRasterDilate pname, Single value) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL.NvConservativeRasterDilate pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL.NvConservativeRasterPreSnapTriangles pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL.NvConservativeRasterPreSnapTriangles pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_copy_image] /// Perform a raw data copy between two images @@ -113606,7 +113606,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_copy_image] /// Perform a raw data copy between two images @@ -113656,47 +113656,47 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [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(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.OpenGL.NvFramebufferMixedSamples components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.OpenGL.NvFramebufferMixedSamples components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113708,7 +113708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113720,7 +113720,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113732,7 +113732,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113744,7 +113744,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113756,7 +113756,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113768,7 +113768,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113782,7 +113782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113796,7 +113796,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113810,7 +113810,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113824,7 +113824,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113838,7 +113838,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113852,7 +113852,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113866,7 +113866,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113880,7 +113880,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113894,7 +113894,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113908,7 +113908,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113922,7 +113922,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113936,7 +113936,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113950,7 +113950,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113964,7 +113964,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113978,7 +113978,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -113992,7 +113992,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114006,7 +114006,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114020,7 +114020,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114034,7 +114034,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114048,7 +114048,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114062,7 +114062,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114076,7 +114076,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114090,7 +114090,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114104,21 +114104,21 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114130,7 +114130,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114142,7 +114142,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114154,7 +114154,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114166,7 +114166,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114178,7 +114178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114190,7 +114190,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114204,7 +114204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114218,7 +114218,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114232,7 +114232,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114246,7 +114246,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114260,7 +114260,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114274,7 +114274,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114288,7 +114288,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114302,7 +114302,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114316,7 +114316,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114330,7 +114330,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114344,7 +114344,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114358,7 +114358,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114372,7 +114372,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114386,7 +114386,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114400,7 +114400,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114414,7 +114414,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114428,7 +114428,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114442,7 +114442,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114456,7 +114456,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114470,7 +114470,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114484,7 +114484,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114498,7 +114498,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114512,7 +114512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -114526,281 +114526,281 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new NotImplementedException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new NotImplementedException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new NotImplementedException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new NotImplementedException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(Int32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandList(Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(UInt32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandList(UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new NotImplementedException(); } + public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new NotImplementedException(); } + public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFence([CountAttribute(Parameter = "n")] UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new NotImplementedException(); } + public static void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")] [CLSCompliant(false)] - public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void DeleteFences(Int32 n, [CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static unsafe void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glDeleteOcclusionQueriesNV")] [CLSCompliant(false)] - public static unsafe void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteOcclusionQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114810,7 +114810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram([CountAttribute(Parameter = "n")] Int32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram([CountAttribute(Parameter = "n")] Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114820,7 +114820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram([CountAttribute(Parameter = "n")] UInt32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram([CountAttribute(Parameter = "n")] UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114831,7 +114831,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114842,7 +114842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114853,7 +114853,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114864,7 +114864,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114875,7 +114875,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new NotImplementedException(); } + public static void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Deletes a program object @@ -114886,61 +114886,61 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glDeleteProgramsNV")] [CLSCompliant(false)] - public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void DeleteProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(Int32 states) { throw new NotImplementedException(); } + public static void DeleteState(Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(UInt32 states) { throw new NotImplementedException(); } + public static void DeleteState(UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, Int32[] states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref Int32 states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, ref Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new NotImplementedException(); } + public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, UInt32[] states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref UInt32 states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, ref UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new NotImplementedException(); } + public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114950,7 +114950,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114960,7 +114960,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114973,7 +114973,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114986,7 +114986,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -114999,7 +114999,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -115012,7 +115012,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -115025,7 +115025,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Delete transform feedback objects @@ -115038,13 +115038,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_depth_buffer_float] /// /// [AutoGenerated(Category = "NV_depth_buffer_float", Version = "", EntryPoint = "glDepthBoundsdNV")] - public static void DepthBounds(Double zmin, Double zmax) { throw new NotImplementedException(); } + public static void DepthBounds(Double zmin, Double zmax) { throw new BindingsNotRewrittenException(); } /// [requires: NV_depth_buffer_float] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -115056,7 +115056,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "NV_depth_buffer_float", Version = "", EntryPoint = "glDepthRangedNV")] - public static void DepthRange(Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void DepthRange(Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115065,7 +115065,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int64[] indirects, Int32[] sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int64[] indirects, Int32[] sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115074,7 +115074,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, ref Int64 indirects, ref Int32 sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, ref Int64 indirects, ref Int32 sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115083,7 +115083,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int64* indirects, Int32* sizes, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int64* indirects, Int32* sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115092,7 +115092,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt64[] indirects, Int32[] sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt64[] indirects, Int32[] sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115101,7 +115101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, ref UInt64 indirects, ref Int32 sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, ref UInt64 indirects, ref Int32 sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115110,7 +115110,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115120,7 +115120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115130,7 +115130,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, ref IntPtr indirects, ref Int32 sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, ref IntPtr indirects, ref Int32 sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115140,7 +115140,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, IntPtr* indirects, Int32* sizes, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, Int32 buffer, IntPtr* indirects, Int32* sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115150,7 +115150,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115160,7 +115160,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115170,7 +115170,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL.NvCommandList primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115180,7 +115180,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(Int64[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(Int64[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115190,7 +115190,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(ref Int64 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(ref Int64 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115200,7 +115200,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStatesAddres(Int64* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStatesAddres(Int64* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115210,7 +115210,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(UInt64[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(UInt64[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115220,7 +115220,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(ref UInt64 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(ref UInt64 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115230,7 +115230,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStatesAddres(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStatesAddres(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115241,7 +115241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115252,7 +115252,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(Int32 buffer, ref IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(Int32 buffer, ref IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115263,7 +115263,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStates(Int32 buffer, IntPtr* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStates(Int32 buffer, IntPtr* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115274,7 +115274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115285,7 +115285,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -115296,7 +115296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStates(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStates(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_texture] /// @@ -115312,7 +115312,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_draw_texture] /// @@ -115328,7 +115328,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Render primitives using a count derived from a transform feedback object @@ -115342,7 +115342,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(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Render primitives using a count derived from a transform feedback object @@ -115356,7 +115356,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, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Render primitives using a count derived from a transform feedback object @@ -115369,7 +115369,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(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Render primitives using a count derived from a transform feedback object @@ -115382,7 +115382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glDrawTransformFeedbackNV")] [CLSCompliant(false)] - public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -115398,7 +115398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -115414,42 +115414,42 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glEdgeFlagFormatNV")] - public static void EdgeFlagFormat(Int32 stride) { throw new NotImplementedException(); } + public static void EdgeFlagFormat(Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glEndOcclusionQueryNV")] - public static void EndOcclusionQuery() { throw new NotImplementedException(); } + public static void EndOcclusionQuery() { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glEndTransformFeedbackNV")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void EndVideoCapture(Int32 video_capture_slot) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glEndVideoCaptureNV")] [CLSCompliant(false)] - public static void EndVideoCapture(UInt32 video_capture_slot) { throw new NotImplementedException(); } + public static void EndVideoCapture(UInt32 video_capture_slot) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// /// [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glEvalMapsNV")] - public static void EvalMap(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators mode) { throw new NotImplementedException(); } + public static void EvalMap(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115457,7 +115457,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115465,7 +115465,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115473,7 +115473,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115481,7 +115481,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115489,7 +115489,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -115497,7 +115497,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glExecuteProgramNV")] [CLSCompliant(false)] - public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ExecuteProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -115505,57 +115505,57 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_register_combiners", Version = "", EntryPoint = "glFinalCombinerInputNV")] - public static void FinalCombinerInput(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage) { throw new NotImplementedException(); } + public static void FinalCombinerInput(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(Int32 fence) { throw new NotImplementedException(); } + public static void FinishFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")] [CLSCompliant(false)] - public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); } + public static void FinishFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glFlushPixelDataRangeNV")] - public static void FlushPixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target) { throw new NotImplementedException(); } + public static void FlushPixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glFlushVertexArrayRangeNV")] - public static void FlushVertexArrayRange() { throw new NotImplementedException(); } + public static void FlushVertexArrayRange() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glFogCoordFormatNV")] - public static void FogCoordFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void FogCoordFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glFogCoordhNV")] - public static void FogCoordh(Half fog) { throw new NotImplementedException(); } + public static void FogCoordh(Half fog) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glFogCoordhvNV")] [CLSCompliant(false)] - public static unsafe void FogCoordh([CountAttribute(Count = 1)] Half* fog) { throw new NotImplementedException(); } + public static unsafe void FogCoordh([CountAttribute(Count = 1)] Half* fog) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115564,7 +115564,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115573,7 +115573,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115582,7 +115582,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115591,7 +115591,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115600,7 +115600,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -115609,160 +115609,160 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL.NvSampleLocations target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static Int32 GenFence() { throw new NotImplementedException(); } + public static Int32 GenFence() { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new NotImplementedException(); } + public static void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [length: n] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")] [CLSCompliant(false)] - public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new NotImplementedException(); } + public static unsafe void GenFences(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* fences) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static Int32 GenOcclusionQuery() { throw new NotImplementedException(); } + public static Int32 GenOcclusionQuery() { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// /// [length: n] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGenOcclusionQueriesNV")] [CLSCompliant(false)] - public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenOcclusionQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static Int32 GenProgram() { throw new NotImplementedException(); } + public static Int32 GenProgram() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 programs) { throw new NotImplementedException(); } + public static void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGenProgramsNV")] [CLSCompliant(false)] - public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void GenProgram(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115775,7 +115775,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115788,7 +115788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115801,7 +115801,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115814,7 +115814,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115827,7 +115827,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Reserve transform feedback object names @@ -115840,7 +115840,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -115852,7 +115852,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,index,bufSize)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] [CLSCompliant(false)] - public static void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -115864,7 +115864,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,index,bufSize)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] [CLSCompliant(false)] - public static unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -115876,7 +115876,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,index,bufSize)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] [CLSCompliant(false)] - public static void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL.NvTransformFeedback type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -115888,7 +115888,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(program,index,bufSize)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetActiveVaryingNV")] [CLSCompliant(false)] - public static unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute, CountAttribute(Computed = "program,index,bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115904,7 +115904,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115920,7 +115920,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115936,7 +115936,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115952,7 +115952,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, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115968,7 +115968,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, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -115984,7 +115984,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -115994,7 +115994,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + 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, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116004,7 +116004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + 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, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116014,7 +116014,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + 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, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116024,7 +116024,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + 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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116034,7 +116034,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + 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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116044,7 +116044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + 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, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116053,7 +116053,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116062,7 +116062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116071,7 +116071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116080,7 +116080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116089,7 +116089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116098,7 +116098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetCombinerOutputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -116106,7 +116106,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -116114,7 +116114,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners2] /// @@ -116122,47 +116122,47 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetCombinerStageParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetCommandHeaderNV")] [CLSCompliant(false)] - public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL.NvCommandList tokenID, Int32 size) { throw new NotImplementedException(); } + public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL.NvCommandList tokenID, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetCommandHeaderNV")] [CLSCompliant(false)] - public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL.NvCommandList tokenID, UInt32 size) { throw new NotImplementedException(); } + public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL.NvCommandList tokenID, UInt32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116170,7 +116170,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116178,7 +116178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116186,7 +116186,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116194,7 +116194,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116202,7 +116202,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// @@ -116210,7 +116210,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")] [CLSCompliant(false)] - public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116218,7 +116218,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116226,7 +116226,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116234,7 +116234,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116242,7 +116242,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116250,7 +116250,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_register_combiners] /// @@ -116258,7 +116258,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFinalCombinerInputParameter(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -116268,7 +116268,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -116278,7 +116278,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL.NvBindlessTexture format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116286,7 +116286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [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, CountAttribute(Computed = "value")] Int64[] result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116294,7 +116294,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [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, CountAttribute(Computed = "value")] out Int64 result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116302,7 +116302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [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, CountAttribute(Computed = "value")] Int64* result) { throw new NotImplementedException(); } + public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116310,7 +116310,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [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, CountAttribute(Computed = "value")] UInt64[] result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116318,7 +116318,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [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, CountAttribute(Computed = "value")] out UInt64 result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -116326,55 +116326,55 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(value)] [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, CountAttribute(Computed = "value")] UInt64* result) { throw new NotImplementedException(); } + public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL.NvShaderBufferLoad value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -116385,7 +116385,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -116396,7 +116396,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -116407,7 +116407,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery target, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery internalformat, Int32 samples, OpenTK.Graphics.OpenGL.NvInternalformatSampleQuery pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116416,7 +116416,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116425,7 +116425,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116434,7 +116434,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116443,7 +116443,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116452,7 +116452,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116461,7 +116461,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116470,7 +116470,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116479,7 +116479,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116488,7 +116488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116497,7 +116497,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116506,7 +116506,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116515,7 +116515,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapAttribParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116527,7 +116527,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] IntPtr points) { throw new NotImplementedException(); } + public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, Int32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute, CountAttribute(Computed = "target")] IntPtr points) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116541,7 +116541,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] T6[] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116555,7 +116555,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] T6[,] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116569,7 +116569,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] T6[,,] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116583,7 +116583,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] ref T6 points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116595,7 +116595,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] IntPtr points) { throw new NotImplementedException(); } + public static void GetMapControlPoints(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute, CountAttribute(Computed = "target")] IntPtr points) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116609,7 +116609,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] T6[] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116623,7 +116623,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] T6[,] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116637,7 +116637,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] T6[,,] points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116651,7 +116651,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target")] ref T6 points) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116659,7 +116659,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterfvNV")] [CLSCompliant(false)] - public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116667,7 +116667,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterfvNV")] [CLSCompliant(false)] - public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116675,7 +116675,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [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, CountAttribute(Computed = "target,pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116683,7 +116683,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterivNV")] [CLSCompliant(false)] - public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116691,7 +116691,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glGetMapParameterivNV")] [CLSCompliant(false)] - public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -116699,7 +116699,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [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, CountAttribute(Computed = "target,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute, CountAttribute(Computed = "target,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116715,7 +116715,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, CountAttribute(Count = 2)] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116731,7 +116731,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, CountAttribute(Count = 2)] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116747,7 +116747,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, Int32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116763,7 +116763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116779,7 +116779,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// Retrieve the location of a sample @@ -116795,7 +116795,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glGetMultisamplefvNV")] [CLSCompliant(false)] - public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute, CountAttribute(Count = 2)] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116803,7 +116803,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116811,7 +116811,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116819,7 +116819,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116828,7 +116828,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116837,7 +116837,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116846,7 +116846,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116854,7 +116854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116862,7 +116862,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116870,7 +116870,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116879,7 +116879,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116888,7 +116888,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -116897,7 +116897,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116905,7 +116905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116913,7 +116913,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116921,7 +116921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetOcclusionQuery(Int32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116929,7 +116929,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116937,7 +116937,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116945,7 +116945,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryivNV")] [CLSCompliant(false)] - public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116953,7 +116953,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116961,7 +116961,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] [CLSCompliant(false)] - public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// @@ -116969,7 +116969,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glGetOcclusionQueryuivNV")] [CLSCompliant(false)] - public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetOcclusionQuery(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116977,7 +116977,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116985,7 +116985,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -116993,7 +116993,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117001,7 +117001,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117009,7 +117009,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117017,169 +117017,169 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117187,7 +117187,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117195,7 +117195,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117205,7 +117205,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117215,7 +117215,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117225,7 +117225,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117235,7 +117235,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117245,7 +117245,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117255,7 +117255,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117267,7 +117267,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117279,7 +117279,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117291,7 +117291,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117305,7 +117305,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117319,7 +117319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117333,7 +117333,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117347,7 +117347,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117361,7 +117361,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117375,7 +117375,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117389,7 +117389,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117403,7 +117403,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117417,7 +117417,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117431,7 +117431,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117445,7 +117445,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117459,7 +117459,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117471,7 +117471,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117483,7 +117483,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117495,7 +117495,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117509,7 +117509,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117523,7 +117523,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117537,7 +117537,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117551,7 +117551,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117565,7 +117565,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117579,7 +117579,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117593,7 +117593,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117607,7 +117607,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117621,7 +117621,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117635,7 +117635,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117649,7 +117649,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117663,7 +117663,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117671,7 +117671,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117679,7 +117679,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117687,7 +117687,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117695,7 +117695,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117703,7 +117703,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117711,7 +117711,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117719,7 +117719,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117727,7 +117727,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117735,7 +117735,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117743,7 +117743,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117751,7 +117751,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117759,7 +117759,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117773,7 +117773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [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, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117787,7 +117787,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [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, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117801,7 +117801,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [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, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117815,7 +117815,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [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, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117829,7 +117829,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [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, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117843,7 +117843,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pathListMode,numPaths)] [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, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117859,7 +117859,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117875,7 +117875,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117891,7 +117891,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117907,7 +117907,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117923,7 +117923,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117939,7 +117939,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117955,7 +117955,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117971,7 +117971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -117987,7 +117987,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118003,7 +118003,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118019,7 +118019,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118035,7 +118035,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118051,7 +118051,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118067,7 +118067,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118083,7 +118083,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118099,7 +118099,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118115,7 +118115,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118131,7 +118131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118147,7 +118147,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118163,7 +118163,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118179,7 +118179,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118195,7 +118195,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118211,7 +118211,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118227,7 +118227,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL.NvPathRendering pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118235,7 +118235,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118243,7 +118243,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118251,7 +118251,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118259,7 +118259,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118267,7 +118267,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -118275,7 +118275,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118283,7 +118283,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118291,7 +118291,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118299,7 +118299,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118307,7 +118307,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118315,7 +118315,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118323,7 +118323,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118331,7 +118331,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118339,7 +118339,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] [CLSCompliant(false)] - public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118347,7 +118347,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramEnvParameterIuivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramEnvParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118363,7 +118363,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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118379,7 +118379,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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118395,7 +118395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static unsafe void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118411,7 +118411,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118427,7 +118427,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Returns a parameter from a program object @@ -118443,7 +118443,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramivNV")] [CLSCompliant(false)] - public static unsafe void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118451,7 +118451,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118459,7 +118459,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118467,7 +118467,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118475,7 +118475,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118483,7 +118483,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118491,7 +118491,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118499,7 +118499,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118507,7 +118507,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] [CLSCompliant(false)] - public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -118515,7 +118515,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glGetProgramLocalParameterIuivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramLocalParameterI(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118524,7 +118524,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118533,7 +118533,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118542,7 +118542,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118551,7 +118551,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118560,7 +118560,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118569,7 +118569,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterdvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118578,7 +118578,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118587,7 +118587,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118596,7 +118596,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramNamedParameter(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118605,7 +118605,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118614,7 +118614,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -118623,7 +118623,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glGetProgramNamedParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118632,7 +118632,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118641,7 +118641,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118650,7 +118650,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118659,7 +118659,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118668,7 +118668,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118677,7 +118677,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118686,7 +118686,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118695,7 +118695,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118704,7 +118704,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118713,7 +118713,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118722,7 +118722,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118731,7 +118731,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramParameter(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118750,7 +118750,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118769,7 +118769,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118788,7 +118788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118807,7 +118807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118826,7 +118826,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL.NvPathRendering props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -118845,7 +118845,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL.NvPathRendering programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL.NvPathRendering* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118853,7 +118853,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte[] program) { throw new NotImplementedException(); } + public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte[] program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118861,7 +118861,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] out Byte program) { throw new NotImplementedException(); } + public static void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] out Byte program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118869,7 +118869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static unsafe void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program) { throw new NotImplementedException(); } + public static unsafe void GetProgramString(Int32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118877,7 +118877,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte[] program) { throw new NotImplementedException(); } + public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte[] program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118885,7 +118885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] out Byte program) { throw new NotImplementedException(); } + public static void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] out Byte program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118893,7 +118893,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(id,pname)] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetProgramStringNV")] [CLSCompliant(false)] - public static unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program) { throw new NotImplementedException(); } + public static unsafe void GetProgramString(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Computed = "id,pname")] Byte* program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118901,7 +118901,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] param) { throw new NotImplementedException(); } + public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118909,7 +118909,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 param) { throw new NotImplementedException(); } + public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118917,7 +118917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118925,7 +118925,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32[] param) { throw new NotImplementedException(); } + public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118933,7 +118933,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out UInt32 param) { throw new NotImplementedException(); } + public static void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -118941,38 +118941,38 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target)] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glGetProgramSubroutineParameteruivNV")] [CLSCompliant(false)] - public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void GetProgramSubroutineParameter(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetStageIndexNV")] - public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL.NvCommandList shadertype) { throw new NotImplementedException(); } + public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL.NvCommandList shadertype) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118981,7 +118981,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118990,7 +118990,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -118999,7 +118999,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119008,7 +119008,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -119024,7 +119024,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute, CountAttribute(Count = 1)] out Int32 location) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute, CountAttribute(Count = 1)] out Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -119040,7 +119040,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -119056,7 +119056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] out Int32 location) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] out Int32 location) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Retrieve information about varying variables selected for transform feedback @@ -119072,7 +119072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetTransformFeedbackVaryingNV")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] Int32* location) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119088,7 +119088,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119104,7 +119104,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119120,7 +119120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119136,7 +119136,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119152,7 +119152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Returns the value of a uniform variable @@ -119168,7 +119168,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -119184,7 +119184,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -119200,7 +119200,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -119216,21 +119216,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetVaryingLocationNV")] [CLSCompliant(false)] - public static Int32 GetVaryingLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetVaryingLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glGetVaryingLocationNV")] [CLSCompliant(false)] - public static Int32 GetVaryingLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetVaryingLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119247,7 +119247,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119264,7 +119264,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119280,7 +119280,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, CountAttribute(Count = 1)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119296,7 +119296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119313,7 +119313,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119330,7 +119330,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119346,7 +119346,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119362,7 +119362,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribdvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119379,7 +119379,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119396,7 +119396,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119412,7 +119412,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, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119428,7 +119428,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119445,7 +119445,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119462,7 +119462,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119478,7 +119478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119494,7 +119494,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribfvNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119511,7 +119511,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119528,7 +119528,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119544,7 +119544,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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119560,7 +119560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119577,7 +119577,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119594,7 +119594,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use NvVertexProgram overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119610,7 +119610,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Return a generic vertex attribute parameter @@ -119626,7 +119626,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribivNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119634,7 +119634,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119642,7 +119642,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119650,7 +119650,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119658,7 +119658,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119666,7 +119666,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119674,7 +119674,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119682,7 +119682,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119690,7 +119690,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -119698,7 +119698,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119706,7 +119706,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119716,7 +119716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119726,7 +119726,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119736,7 +119736,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119746,7 +119746,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119754,7 +119754,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glGetVertexAttribPointervNV")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119764,7 +119764,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119774,7 +119774,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119784,7 +119784,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -119794,7 +119794,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119802,7 +119802,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119810,7 +119810,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119818,7 +119818,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCapture(Int32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119826,7 +119826,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119834,7 +119834,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_video_capture", Version = "", EntryPoint = "glGetVideoCaptureivNV")] [CLSCompliant(false)] - public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119842,7 +119842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCapture(UInt32 video_capture_slot, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119851,7 +119851,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119860,7 +119860,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119869,7 +119869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119878,7 +119878,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119887,7 +119887,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119896,7 +119896,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119905,7 +119905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119914,7 +119914,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119923,7 +119923,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119932,7 +119932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119941,7 +119941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119950,7 +119950,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119959,7 +119959,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119968,7 +119968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119977,7 +119977,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119986,7 +119986,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -119995,7 +119995,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -120004,7 +120004,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideoCaptureStream(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120012,7 +120012,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120020,7 +120020,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120028,7 +120028,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120036,7 +120036,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120044,7 +120044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120052,7 +120052,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120060,7 +120060,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120068,7 +120068,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120076,7 +120076,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120084,7 +120084,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120092,7 +120092,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120100,7 +120100,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoivNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120108,7 +120108,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120116,7 +120116,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120124,7 +120124,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideoui64vNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120132,7 +120132,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120140,7 +120140,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] [CLSCompliant(false)] - public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -120148,18 +120148,18 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_present_video", Version = "", EntryPoint = "glGetVideouivNV")] [CLSCompliant(false)] - public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVideo(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glIndexFormatNV")] - public static void IndexFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void IndexFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120168,7 +120168,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120177,84 +120177,84 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsBufferResidentNV")] - public static bool IsBufferResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target) { throw new NotImplementedException(); } + public static bool IsBufferResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsCommandListNV")] [CLSCompliant(false)] - public static bool IsCommandList(Int32 list) { throw new NotImplementedException(); } + public static bool IsCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsCommandListNV")] [CLSCompliant(false)] - public static bool IsCommandList(UInt32 list) { throw new NotImplementedException(); } + public static bool IsCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(Int32 fence) { throw new NotImplementedException(); } + public static bool IsFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")] [CLSCompliant(false)] - public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool IsFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool IsNamedBufferResident(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsNamedBufferResidentNV")] [CLSCompliant(false)] - public static bool IsNamedBufferResident(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsNamedBufferResident(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glIsOcclusionQueryNV")] [CLSCompliant(false)] - public static bool IsOcclusionQuery(Int32 id) { throw new NotImplementedException(); } + public static bool IsOcclusionQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_occlusion_query] /// [AutoGenerated(Category = "NV_occlusion_query", Version = "", EntryPoint = "glIsOcclusionQueryNV")] [CLSCompliant(false)] - public static bool IsOcclusionQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsOcclusionQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120263,7 +120263,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120272,7 +120272,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120280,7 +120280,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -120288,7 +120288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Determines if a name corresponds to a program object @@ -120298,7 +120298,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glIsProgramNV")] [CLSCompliant(false)] - public static bool IsProgram(Int32 id) { throw new NotImplementedException(); } + public static bool IsProgram(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Determines if a name corresponds to a program object @@ -120308,31 +120308,31 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glIsProgramNV")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 id) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsStateNV")] [CLSCompliant(false)] - public static bool IsState(Int32 state) { throw new NotImplementedException(); } + public static bool IsState(Int32 state) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsStateNV")] [CLSCompliant(false)] - public static bool IsState(UInt32 state) { throw new NotImplementedException(); } + public static bool IsState(UInt32 state) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Determine if a name corresponds to a transform feedback object @@ -120342,7 +120342,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glIsTransformFeedbackNV")] [CLSCompliant(false)] - public static bool IsTransformFeedback(Int32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Determine if a name corresponds to a transform feedback object @@ -120352,7 +120352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glIsTransformFeedbackNV")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120364,7 +120364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120376,7 +120376,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120388,7 +120388,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120402,7 +120402,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120416,7 +120416,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120430,7 +120430,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120444,7 +120444,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120458,7 +120458,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120472,7 +120472,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120486,7 +120486,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120500,7 +120500,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120514,7 +120514,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120528,7 +120528,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120542,7 +120542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120556,7 +120556,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120568,7 +120568,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120580,7 +120580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120592,7 +120592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120606,7 +120606,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120620,7 +120620,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120634,7 +120634,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120648,7 +120648,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120662,7 +120662,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120676,7 +120676,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120690,7 +120690,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120704,7 +120704,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120718,7 +120718,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120732,7 +120732,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120746,7 +120746,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -120760,7 +120760,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120769,7 +120769,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte[] program) { throw new NotImplementedException(); } + public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte[] program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120778,7 +120778,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] ref Byte program) { throw new NotImplementedException(); } + public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] ref Byte program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120787,7 +120787,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program) { throw new NotImplementedException(); } + public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120796,7 +120796,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte[] program) { throw new NotImplementedException(); } + public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte[] program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120805,7 +120805,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] ref Byte program) { throw new NotImplementedException(); } + public static void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] ref Byte program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -120814,94 +120814,94 @@ namespace OpenTK.Graphics.OpenGL /// [length: len] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glLoadProgramNV")] [CLSCompliant(false)] - public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program) { throw new NotImplementedException(); } + public static unsafe void LoadProgram(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, [CountAttribute(Parameter = "len")] Byte* program) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeBufferNonResidentNV")] - public static void MakeBufferNonResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target) { throw new NotImplementedException(); } + public static void MakeBufferNonResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeBufferResidentNV")] - public static void MakeBufferResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new NotImplementedException(); } + public static void MakeBufferResident(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL.NvBindlessTexture access) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void MakeNamedBufferNonResident(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferNonResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new NotImplementedException(); } + public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void MakeNamedBufferResident(Int32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [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(); } + public static void MakeNamedBufferResident(UInt32 buffer, OpenTK.Graphics.OpenGL.NvShaderBufferLoad access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120915,7 +120915,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,uorder,vorder)] [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, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120931,7 +120931,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,uorder,vorder")] T8[] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120947,7 +120947,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,uorder,vorder")] T8[,] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120963,7 +120963,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,uorder,vorder")] T8[,,] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120979,7 +120979,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,uorder,vorder")] ref T8 points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -120993,7 +120993,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,uorder,vorder)] [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, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,uorder,vorder")] IntPtr points) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121009,7 +121009,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,uorder,vorder")] T8[] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121025,7 +121025,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,uorder,vorder")] T8[,] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121041,7 +121041,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,uorder,vorder")] T8[,,] points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121057,7 +121057,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "target,uorder,vorder")] ref T8 points) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121065,7 +121065,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] [CLSCompliant(false)] - public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121073,7 +121073,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] [CLSCompliant(false)] - public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] ref Single @params) { throw new NotImplementedException(); } + public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121081,7 +121081,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterfvNV")] [CLSCompliant(false)] - public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121089,7 +121089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] [CLSCompliant(false)] - public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121097,7 +121097,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] [CLSCompliant(false)] - public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_evaluators] /// @@ -121105,137 +121105,137 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,pname)] [AutoGenerated(Category = "NV_evaluators", Version = "", EntryPoint = "glMapParameterivNV")] [CLSCompliant(false)] - public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MapParameter(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [CountAttribute(Computed = "target,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL.NvPathRendering matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBarrierNV")] - public static void MulticastBarrier() { throw new NotImplementedException(); } + public static void MulticastBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121252,7 +121252,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBlitFramebufferNV")] [CLSCompliant(false)] - public static void MulticastBlitFramebuffer(Int32 srcGpu, Int32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new NotImplementedException(); } + public static void MulticastBlitFramebuffer(Int32 srcGpu, Int32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, Int32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121269,7 +121269,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBlitFramebufferNV")] [CLSCompliant(false)] - public static void MulticastBlitFramebuffer(UInt32 srcGpu, UInt32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new NotImplementedException(); } + public static void MulticastBlitFramebuffer(UInt32 srcGpu, UInt32 dstGpu, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, UInt32 mask, OpenTK.Graphics.OpenGL.NvGpuMulticast filter) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121279,7 +121279,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new NotImplementedException(); } + public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121291,7 +121291,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121303,7 +121303,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121315,7 +121315,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121327,7 +121327,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121337,7 +121337,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } + public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121349,7 +121349,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121361,7 +121361,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121373,7 +121373,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121385,7 +121385,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121395,7 +121395,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new NotImplementedException(); } + public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121407,7 +121407,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121419,7 +121419,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121431,7 +121431,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121443,7 +121443,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121453,7 +121453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } + public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121465,7 +121465,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121477,7 +121477,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121489,7 +121489,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121501,7 +121501,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MulticastBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121513,7 +121513,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyBufferSubData(Int32 readGpu, Int32 writeGpuMask, Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void MulticastCopyBufferSubData(Int32 readGpu, Int32 writeGpuMask, Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121525,7 +121525,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyBufferSubData(Int32 readGpu, Int32 writeGpuMask, Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void MulticastCopyBufferSubData(Int32 readGpu, Int32 writeGpuMask, Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121537,7 +121537,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyBufferSubData(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void MulticastCopyBufferSubData(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121549,7 +121549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyBufferSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyBufferSubData(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void MulticastCopyBufferSubData(UInt32 readGpu, UInt32 writeGpuMask, UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121571,7 +121571,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyImageSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyImageSubData(Int32 srcGpu, Int32 dstGpuMask, Int32 srcName, OpenTK.Graphics.OpenGL.NvGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void MulticastCopyImageSubData(Int32 srcGpu, Int32 dstGpuMask, Int32 srcName, OpenTK.Graphics.OpenGL.NvGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121593,7 +121593,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastCopyImageSubDataNV")] [CLSCompliant(false)] - public static void MulticastCopyImageSubData(UInt32 srcGpu, UInt32 dstGpuMask, UInt32 srcName, OpenTK.Graphics.OpenGL.NvGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new NotImplementedException(); } + public static void MulticastCopyImageSubData(UInt32 srcGpu, UInt32 dstGpuMask, UInt32 srcName, OpenTK.Graphics.OpenGL.NvGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121603,7 +121603,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121613,7 +121613,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121623,7 +121623,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void MulticastFramebufferSampleLocations(Int32 gpu, Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121633,7 +121633,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121643,7 +121643,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121653,7 +121653,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void MulticastFramebufferSampleLocations(UInt32 gpu, UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121662,7 +121662,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121671,7 +121671,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121680,7 +121680,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121689,7 +121689,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121698,7 +121698,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121707,7 +121707,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjecti64vNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121716,7 +121716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121725,7 +121725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121734,7 +121734,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(Int32 gpu, Int32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121743,7 +121743,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121752,7 +121752,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121761,7 +121761,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectivNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121770,7 +121770,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectui64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121779,7 +121779,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectui64vNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121788,7 +121788,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectui64vNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121797,7 +121797,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectuivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121806,7 +121806,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectuivNV")] [CLSCompliant(false)] - public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// @@ -121815,21 +121815,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastGetQueryObjectuivNV")] [CLSCompliant(false)] - public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void MulticastGetQueryObject(UInt32 gpu, UInt32 id, OpenTK.Graphics.OpenGL.NvGpuMulticast pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastWaitSyncNV")] [CLSCompliant(false)] - public static void MulticastWaitSync(Int32 signalGpu, Int32 waitGpuMask) { throw new NotImplementedException(); } + public static void MulticastWaitSync(Int32 signalGpu, Int32 waitGpuMask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glMulticastWaitSyncNV")] [CLSCompliant(false)] - public static void MulticastWaitSync(UInt32 signalGpu, UInt32 waitGpuMask) { throw new NotImplementedException(); } + public static void MulticastWaitSync(UInt32 signalGpu, UInt32 waitGpuMask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121839,7 +121839,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessCountNV")] - public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121852,7 +121852,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121865,7 +121865,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121878,7 +121878,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121890,7 +121890,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessCountNV")] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121899,7 +121899,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] - public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121911,7 +121911,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121923,7 +121923,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121935,7 +121935,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -121946,7 +121946,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121957,7 +121957,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121971,7 +121971,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121985,7 +121985,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -121999,7 +121999,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -122012,7 +122012,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirectCount type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122022,7 +122022,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122035,7 +122035,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122048,7 +122048,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122061,7 +122061,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -122073,48 +122073,48 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL.PrimitiveType mode, OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord1hNV")] - public static void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s) { throw new NotImplementedException(); } + public static void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord1hvNV")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Half* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 1)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hNV")] - public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t) { throw new NotImplementedException(); } + public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord2hvNV")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -122122,28 +122122,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hNV")] - public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t, Half r) { throw new NotImplementedException(); } + public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t, Half r) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord3hvNV")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -122152,28 +122152,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hNV")] - public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t, Half r, Half q) { throw new NotImplementedException(); } + public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, Half s, Half t, Half r, Half q) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] [CLSCompliant(false)] - public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glMultiTexCoord4hvNV")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4h(OpenTK.Graphics.OpenGL.TextureUnit target, [CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122182,7 +122182,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122191,7 +122191,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122200,7 +122200,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122209,7 +122209,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122218,7 +122218,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -122227,38 +122227,38 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hNV")] - public static void Normal3h(Half nx, Half ny, Half nz) { throw new NotImplementedException(); } + public static void Normal3h(Half nx, Half ny, Half nz) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] [CLSCompliant(false)] - public static void Normal3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void Normal3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] [CLSCompliant(false)] - public static void Normal3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void Normal3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glNormal3hvNV")] [CLSCompliant(false)] - public static unsafe void Normal3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Normal3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glNormalFormatNV")] - public static void NormalFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void NormalFormat(OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122267,7 +122267,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [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, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122276,7 +122276,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [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, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122285,7 +122285,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,colorFormat)] [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, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL.NvPathRendering color, OpenTK.Graphics.OpenGL.NvPathRendering genMode, OpenTK.Graphics.OpenGL.NvPathRendering colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122296,7 +122296,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122309,7 +122309,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122322,7 +122322,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122335,7 +122335,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122348,7 +122348,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122359,7 +122359,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122372,7 +122372,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122385,7 +122385,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122398,7 +122398,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122411,7 +122411,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122422,7 +122422,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122435,7 +122435,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122448,7 +122448,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122461,7 +122461,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122474,7 +122474,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122485,7 +122485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122498,7 +122498,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122511,7 +122511,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122524,7 +122524,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122537,7 +122537,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122548,7 +122548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122561,7 +122561,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122574,7 +122574,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122587,7 +122587,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122600,7 +122600,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122611,7 +122611,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122624,7 +122624,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122637,7 +122637,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122650,7 +122650,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122663,7 +122663,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122672,7 +122672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122683,7 +122683,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122694,7 +122694,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122705,7 +122705,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122716,7 +122716,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122725,7 +122725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122736,7 +122736,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122747,7 +122747,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122758,7 +122758,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122769,12 +122769,12 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122782,7 +122782,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122790,7 +122790,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122798,7 +122798,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122806,7 +122806,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122814,7 +122814,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122822,12 +122822,12 @@ namespace OpenTK.Graphics.OpenGL /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.OpenGL.NvPathRendering genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.OpenGL.NvPathRendering genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122840,7 +122840,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122855,7 +122855,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122870,7 +122870,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122885,7 +122885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122900,7 +122900,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122913,7 +122913,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122928,7 +122928,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122943,7 +122943,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122958,7 +122958,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122973,7 +122973,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122984,7 +122984,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -122995,7 +122995,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123008,7 +123008,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123021,7 +123021,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123034,7 +123034,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123047,7 +123047,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123060,7 +123060,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123073,7 +123073,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123086,7 +123086,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123099,7 +123099,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathGlyphIndexRange(OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123113,7 +123113,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123129,7 +123129,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123145,7 +123145,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123161,7 +123161,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123177,7 +123177,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123191,7 +123191,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123207,7 +123207,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123223,7 +123223,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123239,7 +123239,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123255,7 +123255,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123270,7 +123270,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123288,7 +123288,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123306,7 +123306,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123324,7 +123324,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123342,7 +123342,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123357,7 +123357,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123375,7 +123375,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123393,7 +123393,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123411,7 +123411,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123429,7 +123429,7 @@ namespace OpenTK.Graphics.OpenGL public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL.NvPathRendering type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL.NvPathRendering handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123443,7 +123443,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123459,7 +123459,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123475,7 +123475,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123491,7 +123491,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123507,7 +123507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123521,7 +123521,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123537,7 +123537,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123553,7 +123553,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123569,7 +123569,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123585,7 +123585,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123599,7 +123599,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123615,7 +123615,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123631,7 +123631,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123647,7 +123647,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123663,7 +123663,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123677,7 +123677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123693,7 +123693,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123709,7 +123709,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123725,7 +123725,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123741,7 +123741,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL.NvPathRendering PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL.NvPathRendering fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123749,7 +123749,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123757,7 +123757,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123765,7 +123765,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123773,7 +123773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123781,7 +123781,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123789,7 +123789,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123797,7 +123797,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123805,7 +123805,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123813,7 +123813,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123821,7 +123821,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123829,7 +123829,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123837,13 +123837,13 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123851,7 +123851,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PathStencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123859,7 +123859,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void PathStencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123868,7 +123868,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123879,7 +123879,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123890,7 +123890,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123901,7 +123901,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123912,7 +123912,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123921,7 +123921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123932,7 +123932,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123943,7 +123943,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123954,7 +123954,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123965,7 +123965,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123978,7 +123978,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -123993,7 +123993,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124008,7 +124008,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124023,7 +124023,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124038,7 +124038,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124051,7 +124051,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124066,7 +124066,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124081,7 +124081,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124096,7 +124096,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124111,7 +124111,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124124,7 +124124,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124139,7 +124139,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124154,7 +124154,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124169,7 +124169,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124184,7 +124184,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124197,7 +124197,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124212,7 +124212,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124227,7 +124227,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124242,7 +124242,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124257,7 +124257,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124270,7 +124270,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124285,7 +124285,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124300,7 +124300,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124315,7 +124315,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124330,7 +124330,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124343,7 +124343,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124358,7 +124358,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124373,7 +124373,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124388,7 +124388,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124403,7 +124403,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124413,7 +124413,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [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, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124425,7 +124425,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124437,7 +124437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124449,7 +124449,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124461,7 +124461,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124471,7 +124471,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numCoords,coordType)] [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, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124483,7 +124483,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124495,7 +124495,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124507,7 +124507,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124519,7 +124519,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL.NvPathRendering coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124528,7 +124528,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [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, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124537,7 +124537,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [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, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124546,20 +124546,20 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(genMode,components)] [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, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL.NvPathRendering texCoordSet, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Pause transform feedback operations /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glPauseTransformFeedbackNV")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// /// /// [length: length] [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glPixelDataRangeNV")] - public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// @@ -124569,7 +124569,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// @@ -124579,7 +124579,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// @@ -124589,7 +124589,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_pixel_data_range] /// @@ -124598,7 +124598,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_pixel_data_range", Version = "", EntryPoint = "glPixelDataRangeNV")] public static void PixelDataRange(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124611,7 +124611,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124624,7 +124624,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124637,7 +124637,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -124650,7 +124650,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_point_sprite] /// Specify point parameters @@ -124662,7 +124662,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "NV_point_sprite", Version = "", EntryPoint = "glPointParameteriNV")] - public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: NV_point_sprite] /// Specify point parameters @@ -124675,7 +124675,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_point_sprite", Version = "", EntryPoint = "glPointParameterivNV")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_point_sprite] /// Specify point parameters @@ -124688,7 +124688,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_point_sprite", Version = "", EntryPoint = "glPointParameterivNV")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.NvPointSprite pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -124706,7 +124706,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -124724,7 +124724,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -124740,7 +124740,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_present_video] /// @@ -124756,7 +124756,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_primitive_restart] /// Specify the primitive restart index @@ -124766,7 +124766,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_primitive_restart", Version = "", EntryPoint = "glPrimitiveRestartIndexNV")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(Int32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_primitive_restart] /// Specify the primitive restart index @@ -124776,11 +124776,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_primitive_restart", Version = "", EntryPoint = "glPrimitiveRestartIndexNV")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: NV_primitive_restart] [AutoGenerated(Category = "NV_primitive_restart", Version = "", EntryPoint = "glPrimitiveRestartNV")] - public static void PrimitiveRestart() { throw new NotImplementedException(); } + public static void PrimitiveRestart() { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124790,7 +124790,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124800,7 +124800,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124810,7 +124810,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124820,7 +124820,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Single[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124830,7 +124830,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] ref Single @params) { throw new NotImplementedException(); } + public static void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124840,7 +124840,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParameters(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124850,7 +124850,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124860,7 +124860,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124870,7 +124870,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, Int32 bindingIndex, Int32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124880,7 +124880,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124890,7 +124890,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124900,7 +124900,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124910,7 +124910,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124920,7 +124920,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_parameter_buffer_object] /// @@ -124930,7 +124930,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [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, [CountAttribute(Parameter = "count")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramBufferParametersI(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 bindingIndex, UInt32 wordIndex, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124941,7 +124941,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124952,7 +124952,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124960,7 +124960,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124968,7 +124968,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124976,7 +124976,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124984,7 +124984,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -124992,7 +124992,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125000,7 +125000,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125011,7 +125011,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125019,7 +125019,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125027,7 +125027,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] [CLSCompliant(false)] - public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125035,7 +125035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParameterI4uivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125044,7 +125044,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125053,7 +125053,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125062,7 +125062,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125071,7 +125071,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125080,7 +125080,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125089,7 +125089,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125098,7 +125098,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125107,7 +125107,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] [CLSCompliant(false)] - public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125116,7 +125116,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramEnvParametersI4uivNV")] [CLSCompliant(false)] - public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramEnvParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125127,7 +125127,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125138,7 +125138,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125146,7 +125146,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125154,7 +125154,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125162,7 +125162,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125170,7 +125170,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125178,7 +125178,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125186,7 +125186,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125197,7 +125197,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125205,7 +125205,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125213,7 +125213,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] [CLSCompliant(false)] - public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125221,7 +125221,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParameterI4uivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParameterI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125230,7 +125230,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125239,7 +125239,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125248,7 +125248,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125257,7 +125257,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125266,7 +125266,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125275,7 +125275,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4ivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125284,7 +125284,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125293,7 +125293,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] [CLSCompliant(false)] - public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program4] /// @@ -125302,7 +125302,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_gpu_program4", Version = "", EntryPoint = "glProgramLocalParametersI4uivNV")] [CLSCompliant(false)] - public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramLocalParametersI4(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125314,7 +125314,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125326,7 +125326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125338,7 +125338,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125350,7 +125350,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125359,7 +125359,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125368,7 +125368,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125377,7 +125377,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125386,7 +125386,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125395,7 +125395,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125404,7 +125404,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125416,7 +125416,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125428,7 +125428,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125440,7 +125440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125452,7 +125452,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125461,7 +125461,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125470,7 +125470,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125479,7 +125479,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(Int32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125488,7 +125488,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125497,7 +125497,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] ref Byte name, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_program] /// @@ -125506,7 +125506,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "NV_fragment_program", Version = "", EntryPoint = "glProgramNamedParameter4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, [CountAttribute(Count = 1)] Byte* name, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125525,7 +125525,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(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125544,7 +125544,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125560,7 +125560,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, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125576,7 +125576,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, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125592,7 +125592,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125608,7 +125608,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125624,7 +125624,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125640,7 +125640,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125659,7 +125659,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(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125678,7 +125678,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125694,7 +125694,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, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125710,7 +125710,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, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125726,7 +125726,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125742,7 +125742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125758,7 +125758,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specify a parameter for a program object @@ -125774,7 +125774,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameter4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameter4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125783,7 +125783,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125792,7 +125792,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125801,7 +125801,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125810,7 +125810,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125819,7 +125819,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125828,7 +125828,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125838,7 +125838,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125848,7 +125848,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125858,7 +125858,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4dvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125867,7 +125867,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125876,7 +125876,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125885,7 +125885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125894,7 +125894,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125903,7 +125903,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125912,7 +125912,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125922,7 +125922,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125932,7 +125932,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -125942,7 +125942,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use int overload instead")] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glProgramParameters4fvNV")] [CLSCompliant(false)] - public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ProgramParameters4(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125952,7 +125952,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125962,7 +125962,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125972,7 +125972,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125982,7 +125982,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -125992,7 +125992,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -126002,7 +126002,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL.NvPathRendering genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126010,7 +126010,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new NotImplementedException(); } + public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126018,7 +126018,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126026,7 +126026,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126034,7 +126034,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] @params) { throw new NotImplementedException(); } + public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126042,7 +126042,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_program5] /// @@ -126050,7 +126050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_gpu_program5", Version = "", EntryPoint = "glProgramSubroutineParametersuivNV")] [CLSCompliant(false)] - public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void ProgramSubroutineParameters(OpenTK.Graphics.OpenGL.NvGpuProgram5 target, Int32 count, [CountAttribute(Parameter = "count")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126066,7 +126066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126082,7 +126082,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126101,7 +126101,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126120,7 +126120,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126139,7 +126139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126158,7 +126158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126177,7 +126177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126196,7 +126196,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126212,7 +126212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126231,7 +126231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126250,7 +126250,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126269,7 +126269,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126288,7 +126288,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126307,7 +126307,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126326,7 +126326,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126345,7 +126345,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126364,7 +126364,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126383,7 +126383,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126402,7 +126402,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126421,7 +126421,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126440,7 +126440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126459,7 +126459,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126478,7 +126478,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126497,7 +126497,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126519,7 +126519,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126541,7 +126541,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126560,7 +126560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126579,7 +126579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126598,7 +126598,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126617,7 +126617,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126636,7 +126636,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126655,7 +126655,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126677,7 +126677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126696,7 +126696,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126715,7 +126715,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126734,7 +126734,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126759,7 +126759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126784,7 +126784,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126803,7 +126803,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126822,7 +126822,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126841,7 +126841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126860,7 +126860,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126879,7 +126879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126898,7 +126898,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126923,7 +126923,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126942,7 +126942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126961,7 +126961,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -126980,7 +126980,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -126988,7 +126988,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -126996,7 +126996,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127005,7 +127005,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127014,7 +127014,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127023,7 +127023,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127032,7 +127032,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127041,7 +127041,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -127050,7 +127050,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127066,7 +127066,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(); } + public static void ProgramUniform(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127082,7 +127082,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127101,7 +127101,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, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127120,7 +127120,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, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127139,7 +127139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127158,7 +127158,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127177,7 +127177,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -127196,13 +127196,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_geometry_program4] /// /// [AutoGenerated(Category = "NV_geometry_program4", Version = "", EntryPoint = "glProgramVertexLimitNV")] - public static void ProgramVertexLimit(OpenTK.Graphics.OpenGL.NvGeometryProgram4 target, Int32 limit) { throw new NotImplementedException(); } + public static void ProgramVertexLimit(OpenTK.Graphics.OpenGL.NvGeometryProgram4 target, Int32 limit) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample_coverage] /// @@ -127212,169 +127212,169 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_framebuffer_multisample_coverage", Version = "", EntryPoint = "glRenderbufferStorageMultisampleCoverageNV")] - public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glRenderGpuMaskNV")] [CLSCompliant(false)] - public static void RenderGpuMask(Int32 mask) { throw new NotImplementedException(); } + public static void RenderGpuMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_multicast] /// [AutoGenerated(Category = "NV_gpu_multicast", Version = "", EntryPoint = "glRenderGpuMaskNV")] [CLSCompliant(false)] - public static void RenderGpuMask(UInt32 mask) { throw new NotImplementedException(); } + public static void RenderGpuMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new NotImplementedException(); } + public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new NotImplementedException(); } + public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static unsafe void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new NotImplementedException(); } + public static unsafe void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] Int32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new NotImplementedException(); } + public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new NotImplementedException(); } + public static void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// /// [length: n] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glRequestResidentProgramsNV")] [CLSCompliant(false)] - public static unsafe void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new NotImplementedException(); } + public static unsafe void RequestResidentProgram(Int32 n, [CountAttribute(Parameter = "n")] UInt32* programs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback2] /// Resume transform feedback operations /// [AutoGenerated(Category = "NV_transform_feedback2", Version = "", EntryPoint = "glResumeTransformFeedbackNV")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void SampleMaskIndexed(Int32 index, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glSampleMaskIndexedNV")] [CLSCompliant(false)] - public static void SampleMaskIndexed(UInt32 index, UInt32 mask) { throw new NotImplementedException(); } + public static void SampleMaskIndexed(UInt32 index, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hNV")] - public static void SecondaryColor3h(Half red, Half green, Half blue) { throw new NotImplementedException(); } + public static void SecondaryColor3h(Half red, Half green, Half blue) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] [CLSCompliant(false)] - public static void SecondaryColor3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void SecondaryColor3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] [CLSCompliant(false)] - public static void SecondaryColor3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void SecondaryColor3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glSecondaryColor3hvNV")] [CLSCompliant(false)] - public static unsafe void SecondaryColor3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void SecondaryColor3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glSecondaryColorFormatNV")] - public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void SetFence(Int32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")] [CLSCompliant(false)] - public static void SetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new NotImplementedException(); } + public static void SetFence(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence condition) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glStateCaptureNV")] [CLSCompliant(false)] - public static void StateCapture(Int32 state, OpenTK.Graphics.OpenGL.NvCommandList mode) { throw new NotImplementedException(); } + public static void StateCapture(Int32 state, OpenTK.Graphics.OpenGL.NvCommandList mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glStateCaptureNV")] [CLSCompliant(false)] - public static void StateCapture(UInt32 state, OpenTK.Graphics.OpenGL.NvCommandList mode) { throw new NotImplementedException(); } + public static void StateCapture(UInt32 state, OpenTK.Graphics.OpenGL.NvCommandList mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127387,7 +127387,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127400,7 +127400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127413,7 +127413,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127426,7 +127426,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127439,7 +127439,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127452,7 +127452,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127467,7 +127467,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127482,7 +127482,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127497,7 +127497,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127512,7 +127512,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127527,7 +127527,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127542,7 +127542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127557,7 +127557,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127572,7 +127572,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127587,7 +127587,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127602,7 +127602,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127617,7 +127617,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127632,7 +127632,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127647,7 +127647,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127662,7 +127662,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127677,7 +127677,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127692,7 +127692,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127707,7 +127707,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127722,7 +127722,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127737,7 +127737,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127752,7 +127752,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127767,7 +127767,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127782,7 +127782,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127797,7 +127797,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127812,7 +127812,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127820,7 +127820,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127828,7 +127828,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127841,7 +127841,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127854,7 +127854,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127867,7 +127867,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127880,7 +127880,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127893,7 +127893,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127906,7 +127906,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127921,7 +127921,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127936,7 +127936,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127951,7 +127951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127966,7 +127966,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127981,7 +127981,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -127996,7 +127996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128011,7 +128011,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128026,7 +128026,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128041,7 +128041,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128056,7 +128056,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128071,7 +128071,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128086,7 +128086,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128101,7 +128101,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128116,7 +128116,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128131,7 +128131,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128146,7 +128146,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128161,7 +128161,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128176,7 +128176,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128191,7 +128191,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128206,7 +128206,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128221,7 +128221,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128236,7 +128236,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128251,7 +128251,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128266,7 +128266,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128274,7 +128274,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128282,7 +128282,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128296,7 +128296,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128310,7 +128310,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128324,7 +128324,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128338,7 +128338,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128352,7 +128352,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128366,7 +128366,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128382,7 +128382,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128398,7 +128398,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128414,7 +128414,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128430,7 +128430,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128446,7 +128446,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128462,7 +128462,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128478,7 +128478,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128494,7 +128494,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128510,7 +128510,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128526,7 +128526,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128542,7 +128542,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128558,7 +128558,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128574,7 +128574,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128590,7 +128590,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128606,7 +128606,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128622,7 +128622,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128638,7 +128638,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128654,7 +128654,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128670,7 +128670,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(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 coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128686,7 +128686,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(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 coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128702,7 +128702,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(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 coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128718,7 +128718,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(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 coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128734,7 +128734,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(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 coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128750,7 +128750,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(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 coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128759,7 +128759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128768,7 +128768,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL.NvPathRendering fillMode, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128782,7 +128782,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128796,7 +128796,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128810,7 +128810,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128824,7 +128824,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128838,7 +128838,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128852,7 +128852,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128868,7 +128868,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128884,7 +128884,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128900,7 +128900,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128916,7 +128916,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128932,7 +128932,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128948,7 +128948,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128964,7 +128964,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128980,7 +128980,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -128996,7 +128996,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129012,7 +129012,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129028,7 +129028,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129044,7 +129044,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129060,7 +129060,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129076,7 +129076,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129092,7 +129092,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129108,7 +129108,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129124,7 +129124,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129140,7 +129140,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129156,7 +129156,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129172,7 +129172,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129188,7 +129188,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129204,7 +129204,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129220,7 +129220,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129236,7 +129236,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL.NvPathRendering pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode, OpenTK.Graphics.OpenGL.NvPathRendering transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129245,7 +129245,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129254,93 +129254,93 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL.NvPathRendering coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(Int32 fence) { throw new NotImplementedException(); } + public static bool TestFence(Int32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fence] /// [AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")] [CLSCompliant(false)] - public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); } + public static bool TestFence(UInt32 fence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord1hNV")] - public static void TexCoord1h(Half s) { throw new NotImplementedException(); } + public static void TexCoord1h(Half s) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord1hvNV")] [CLSCompliant(false)] - public static unsafe void TexCoord1h([CountAttribute(Count = 1)] Half* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord1h([CountAttribute(Count = 1)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hNV")] - public static void TexCoord2h(Half s, Half t) { throw new NotImplementedException(); } + public static void TexCoord2h(Half s, Half t) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] [CLSCompliant(false)] - public static void TexCoord2h([CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void TexCoord2h([CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] [CLSCompliant(false)] - public static void TexCoord2h([CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void TexCoord2h([CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord2hvNV")] [CLSCompliant(false)] - public static unsafe void TexCoord2h([CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2h([CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hNV")] - public static void TexCoord3h(Half s, Half t, Half r) { throw new NotImplementedException(); } + public static void TexCoord3h(Half s, Half t, Half r) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] [CLSCompliant(false)] - public static void TexCoord3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void TexCoord3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] [CLSCompliant(false)] - public static void TexCoord3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void TexCoord3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord3hvNV")] [CLSCompliant(false)] - public static unsafe void TexCoord3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -129348,32 +129348,32 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hNV")] - public static void TexCoord4h(Half s, Half t, Half r, Half q) { throw new NotImplementedException(); } + public static void TexCoord4h(Half s, Half t, Half r, Half q) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] [CLSCompliant(false)] - public static void TexCoord4h([CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void TexCoord4h([CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] [CLSCompliant(false)] - public static void TexCoord4h([CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void TexCoord4h([CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glTexCoord4hvNV")] [CLSCompliant(false)] - public static unsafe void TexCoord4h([CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4h([CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glTexCoordFormatNV")] - public static void TexCoordFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void TexCoordFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129384,7 +129384,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTexImage2DMultisampleCoverageNV")] - public static void TexImage2DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TexImage2DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129396,25 +129396,25 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_texture_multisample", Version = "", EntryPoint = "glTexImage3DMultisampleCoverageNV")] - public static void TexImage3DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new NotImplementedException(); } + public static void TexImage3DMultisampleCoverage(OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 coverageSamples, Int32 colorSamples, Int32 internalFormat, Int32 width, Int32 height, Int32 depth, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_explicit_multisample] /// /// [AutoGenerated(Category = "NV_explicit_multisample", Version = "", EntryPoint = "glTexRenderbufferNV")] [CLSCompliant(false)] - public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void TexRenderbuffer(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_barrier] [AutoGenerated(Category = "NV_texture_barrier", Version = "", EntryPoint = "glTextureBarrierNV")] - public static void TextureBarrier() { throw new NotImplementedException(); } + public static void TextureBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129427,7 +129427,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129440,7 +129440,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129452,7 +129452,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TextureImage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129464,7 +129464,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TextureImage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL.NvTextureMultisample target, Int32 samples, Int32 internalFormat, Int32 width, Int32 height, bool fixedSampleLocations) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129478,7 +129478,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129492,7 +129492,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129505,7 +129505,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_texture_multisample] /// @@ -129518,7 +129518,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -129527,7 +129527,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, Int32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -129536,7 +129536,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TrackMatrix(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129544,7 +129544,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] [CLSCompliant(false)] - public static void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] Int32[] attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] Int32[] attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129552,7 +129552,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] [CLSCompliant(false)] - public static void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] ref Int32 attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] ref Int32 attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129560,7 +129560,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackAttribsNV")] [CLSCompliant(false)] - public static unsafe void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] Int32* attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static unsafe void TransformFeedbackAttrib(Int32 count, [CountAttribute(Computed = "count")] Int32* attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129570,7 +129570,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] [CLSCompliant(false)] - public static void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] Int32[] attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32[] bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] Int32[] attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32[] bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129580,7 +129580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] [CLSCompliant(false)] - public static void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] ref Int32 bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] ref Int32 bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// @@ -129590,7 +129590,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackStreamAttribsNV")] [CLSCompliant(false)] - public static unsafe void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] Int32* attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32* bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static unsafe void TransformFeedbackStreamAttrib(Int32 count, [CountAttribute(Parameter = "count")] Int32* attribs, Int32 nbuffers, [CountAttribute(Parameter = "nbuffers")] Int32* bufstreams, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129609,7 +129609,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129628,7 +129628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129647,7 +129647,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static unsafe void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static unsafe void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129666,7 +129666,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32[] locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129685,7 +129685,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_transform_feedback] /// Specify values to record in transform feedback buffers @@ -129704,7 +129704,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_transform_feedback", Version = "", EntryPoint = "glTransformFeedbackVaryingsNV")] [CLSCompliant(false)] - public static unsafe void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new NotImplementedException(); } + public static unsafe void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] Int32* locations, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129713,7 +129713,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129722,7 +129722,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129731,7 +129731,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129740,7 +129740,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129749,7 +129749,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -129758,7 +129758,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL.NvPathRendering transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129770,7 +129770,7 @@ namespace OpenTK.Graphics.OpenGL /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129786,7 +129786,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129802,7 +129802,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129818,7 +129818,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129831,7 +129831,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129847,7 +129847,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129863,7 +129863,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129879,7 +129879,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129894,7 +129894,7 @@ namespace OpenTK.Graphics.OpenGL /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129910,7 +129910,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129926,7 +129926,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129942,7 +129942,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129958,7 +129958,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129974,7 +129974,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -129990,7 +129990,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130006,7 +130006,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130024,7 +130024,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130040,7 +130040,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130056,7 +130056,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130072,7 +130072,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130091,7 +130091,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64NV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130107,7 +130107,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130123,7 +130123,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130139,7 +130139,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130160,7 +130160,7 @@ namespace OpenTK.Graphics.OpenGL /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130176,7 +130176,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130192,7 +130192,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130208,7 +130208,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130230,7 +130230,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|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(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130246,7 +130246,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130262,7 +130262,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_gpu_shader_int64|NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -130278,21 +130278,21 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "AMD_gpu_shader_int64|NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130300,7 +130300,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130308,7 +130308,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130316,7 +130316,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130324,7 +130324,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130332,7 +130332,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -130340,7 +130340,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130353,7 +130353,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(); } + public static void Uniform(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130366,7 +130366,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130382,7 +130382,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130398,7 +130398,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130414,7 +130414,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130430,7 +130430,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130446,7 +130446,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -130462,11 +130462,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUFiniNV")] - public static void VDPAUFin() { throw new NotImplementedException(); } + public static void VDPAUFin() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130476,7 +130476,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130486,7 +130486,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130496,13 +130496,13 @@ namespace OpenTK.Graphics.OpenGL /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void VDPAUGetSurface(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUInitNV")] - public static void VDPAUInit(IntPtr vdpDevice, IntPtr getProcAddress) { throw new NotImplementedException(); } + public static void VDPAUInit(IntPtr vdpDevice, IntPtr getProcAddress) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130512,7 +130512,7 @@ namespace OpenTK.Graphics.OpenGL public static void VDPAUInit([InAttribute, OutAttribute] T0[] vdpDevice, [InAttribute, OutAttribute] T1[] getProcAddress) where T0 : struct where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130522,7 +130522,7 @@ namespace OpenTK.Graphics.OpenGL public static void VDPAUInit([InAttribute, OutAttribute] T0[,] vdpDevice, [InAttribute, OutAttribute] T1[,] getProcAddress) where T0 : struct where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130532,7 +130532,7 @@ namespace OpenTK.Graphics.OpenGL public static void VDPAUInit([InAttribute, OutAttribute] T0[,,] vdpDevice, [InAttribute, OutAttribute] T1[,,] getProcAddress) where T0 : struct where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130541,33 +130541,33 @@ namespace OpenTK.Graphics.OpenGL public static void VDPAUInit([InAttribute, OutAttribute] ref T0 vdpDevice, [InAttribute, OutAttribute] ref T1 getProcAddress) where T0 : struct where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUIsSurfaceNV")] - public static bool VDPAUIsSurface(IntPtr surface) { throw new NotImplementedException(); } + public static bool VDPAUIsSurface(IntPtr surface) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurfaces] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] [CLSCompliant(false)] - public static void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr[] surfaces) { throw new NotImplementedException(); } + public static void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr[] surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurfaces] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] [CLSCompliant(false)] - public static void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] ref IntPtr surfaces) { throw new NotImplementedException(); } + public static void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] ref IntPtr surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurfaces] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUMapSurfacesNV")] [CLSCompliant(false)] - public static unsafe void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr* surfaces) { throw new NotImplementedException(); } + public static unsafe void VDPAUMapSurfaces(Int32 numSurfaces, [CountAttribute(Parameter = "numSurfaces")] IntPtr* surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130576,7 +130576,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130585,7 +130585,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130594,7 +130594,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) { throw new NotImplementedException(); } + public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130603,7 +130603,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130612,7 +130612,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130621,7 +130621,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterOutputSurfaceNV")] [CLSCompliant(false)] - public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) { throw new NotImplementedException(); } + public static unsafe IntPtr VDPAURegisterOutputSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130632,7 +130632,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130643,7 +130643,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130654,7 +130654,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130665,7 +130665,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130676,7 +130676,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130687,7 +130687,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130698,7 +130698,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130709,7 +130709,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130720,7 +130720,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130731,7 +130731,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130742,7 +130742,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130753,7 +130753,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130764,7 +130764,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130775,7 +130775,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130786,7 +130786,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130797,7 +130797,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130808,7 +130808,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130819,7 +130819,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130830,7 +130830,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130841,7 +130841,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130852,7 +130852,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130863,7 +130863,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130874,7 +130874,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130885,7 +130885,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterOutputSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130894,7 +130894,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130903,7 +130903,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130912,7 +130912,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) { throw new NotImplementedException(); } + public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130921,7 +130921,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130930,7 +130930,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) { throw new NotImplementedException(); } + public static IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130939,7 +130939,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numTextureNames] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAURegisterVideoSurfaceNV")] [CLSCompliant(false)] - public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) { throw new NotImplementedException(); } + public static unsafe IntPtr VDPAURegisterVideoSurface(IntPtr vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130950,7 +130950,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130961,7 +130961,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130972,7 +130972,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130983,7 +130983,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -130994,7 +130994,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131005,7 +131005,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131016,7 +131016,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131027,7 +131027,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131038,7 +131038,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131049,7 +131049,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131060,7 +131060,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131071,7 +131071,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131082,7 +131082,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131093,7 +131093,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131104,7 +131104,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131115,7 +131115,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131126,7 +131126,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131137,7 +131137,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] T0[,,] vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131148,7 +131148,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131159,7 +131159,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref Int32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131170,7 +131170,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] Int32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131181,7 +131181,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32[] textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131192,7 +131192,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] ref UInt32 textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// @@ -131203,88 +131203,88 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static unsafe IntPtr VDPAURegisterVideoSurface([InAttribute, OutAttribute] ref T0 vdpSurface, OpenTK.Graphics.OpenGL.NvVdpauInterop target, Int32 numTextureNames, [CountAttribute(Parameter = "numTextureNames")] UInt32* textureNames) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUSurfaceAccessNV")] - public static void VDPAUSurfaceAccess(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop access) { throw new NotImplementedException(); } + public static void VDPAUSurfaceAccess(IntPtr surface, OpenTK.Graphics.OpenGL.NvVdpauInterop access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurface] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] [CLSCompliant(false)] - public static void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr[] surfaces) { throw new NotImplementedException(); } + public static void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr[] surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurface] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] [CLSCompliant(false)] - public static void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] ref IntPtr surfaces) { throw new NotImplementedException(); } + public static void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] ref IntPtr surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// /// [length: numSurface] [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnmapSurfacesNV")] [CLSCompliant(false)] - public static unsafe void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr* surfaces) { throw new NotImplementedException(); } + public static unsafe void VDPAUUnmapSurfaces(Int32 numSurface, [CountAttribute(Parameter = "numSurface")] IntPtr* surfaces) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vdpau_interop] /// [AutoGenerated(Category = "NV_vdpau_interop", Version = "", EntryPoint = "glVDPAUUnregisterSurfaceNV")] - public static void VDPAUUnregisterSurface(IntPtr surface) { throw new NotImplementedException(); } + public static void VDPAUUnregisterSurface(IntPtr surface) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hNV")] - public static void Vertex2h(Half x, Half y) { throw new NotImplementedException(); } + public static void Vertex2h(Half x, Half y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] [CLSCompliant(false)] - public static void Vertex2h([CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void Vertex2h([CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] [CLSCompliant(false)] - public static void Vertex2h([CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void Vertex2h([CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex2hvNV")] [CLSCompliant(false)] - public static unsafe void Vertex2h([CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Vertex2h([CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hNV")] - public static void Vertex3h(Half x, Half y, Half z) { throw new NotImplementedException(); } + public static void Vertex3h(Half x, Half y, Half z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] [CLSCompliant(false)] - public static void Vertex3h([CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void Vertex3h([CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] [CLSCompliant(false)] - public static void Vertex3h([CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void Vertex3h([CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex3hvNV")] [CLSCompliant(false)] - public static unsafe void Vertex3h([CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Vertex3h([CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -131292,31 +131292,31 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hNV")] - public static void Vertex4h(Half x, Half y, Half z, Half w) { throw new NotImplementedException(); } + public static void Vertex4h(Half x, Half y, Half z, Half w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] [CLSCompliant(false)] - public static void Vertex4h([CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void Vertex4h([CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] [CLSCompliant(false)] - public static void Vertex4h([CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void Vertex4h([CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertex4hvNV")] [CLSCompliant(false)] - public static unsafe void Vertex4h([CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void Vertex4h([CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// /// [length: COMPSIZE(length)] [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeNV")] - public static void VertexArrayRange(Int32 length, [CountAttribute(Computed = "length")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexArrayRange(Int32 length, [CountAttribute(Computed = "length")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// @@ -131325,7 +131325,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Computed = "length")] T1[] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// @@ -131334,7 +131334,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Computed = "length")] T1[,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// @@ -131343,7 +131343,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Computed = "length")] T1[,,] pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_array_range] /// @@ -131351,7 +131351,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NV_vertex_array_range", Version = "", EntryPoint = "glVertexArrayRangeNV")] public static void VertexArrayRange(Int32 length, [InAttribute, OutAttribute, CountAttribute(Computed = "length")] ref T1 pointer) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131364,7 +131364,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(); } + public static void VertexAttrib1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131377,7 +131377,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dNV")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131390,7 +131390,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131403,7 +131403,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131416,7 +131416,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(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131429,7 +131429,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fNV")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131442,7 +131442,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131455,35 +131455,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttrib1h(Int32 index, Half x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hNV")] [CLSCompliant(false)] - public static void VertexAttrib1h(UInt32 index, Half x) { throw new NotImplementedException(); } + public static void VertexAttrib1h(UInt32 index, Half x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1h(Int32 index, [CountAttribute(Count = 1)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1h(Int32 index, [CountAttribute(Count = 1)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib1hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1h(UInt32 index, [CountAttribute(Count = 1)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1h(UInt32 index, [CountAttribute(Count = 1)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131496,7 +131496,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(); } + public static void VertexAttrib1(Int32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131509,7 +131509,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1sNV")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131522,7 +131522,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131535,7 +131535,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib1svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131551,7 +131551,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(); } + public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131567,7 +131567,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131580,7 +131580,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131593,7 +131593,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131606,7 +131606,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131619,7 +131619,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131632,7 +131632,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131645,7 +131645,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131661,7 +131661,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(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131677,7 +131677,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131690,7 +131690,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131703,7 +131703,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131716,7 +131716,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131729,7 +131729,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131742,7 +131742,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131755,7 +131755,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -131763,7 +131763,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(Int32 index, Half x, Half y) { throw new NotImplementedException(); } + public static void VertexAttrib2h(Int32 index, Half x, Half y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -131771,49 +131771,49 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(UInt32 index, Half x, Half y) { throw new NotImplementedException(); } + public static void VertexAttrib2h(UInt32 index, Half x, Half y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2h(Int32 index, [CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 2] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib2hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2h(UInt32 index, [CountAttribute(Count = 2)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131829,7 +131829,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(); } + public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131845,7 +131845,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2sNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131858,7 +131858,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131871,7 +131871,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131884,7 +131884,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131897,7 +131897,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131910,7 +131910,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131923,7 +131923,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib2svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131942,7 +131942,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(); } + public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131961,7 +131961,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131974,7 +131974,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -131987,7 +131987,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132000,7 +132000,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132013,7 +132013,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132026,7 +132026,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132039,7 +132039,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132058,7 +132058,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(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132077,7 +132077,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132090,7 +132090,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132103,7 +132103,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132116,7 +132116,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132129,7 +132129,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132142,7 +132142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132155,7 +132155,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -132164,7 +132164,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3h(Int32 index, Half x, Half y, Half z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -132173,49 +132173,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3h(UInt32 index, Half x, Half y, Half z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3h(Int32 index, [CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 3] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib3hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3h(UInt32 index, [CountAttribute(Count = 3)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132234,7 +132234,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(); } + public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132253,7 +132253,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132266,7 +132266,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132279,7 +132279,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132292,7 +132292,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132305,7 +132305,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132318,7 +132318,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132331,7 +132331,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib3svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132353,7 +132353,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(); } + public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132375,7 +132375,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132388,7 +132388,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132401,7 +132401,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132414,7 +132414,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132427,7 +132427,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132440,7 +132440,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132453,7 +132453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132475,7 +132475,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(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132497,7 +132497,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132510,7 +132510,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132523,7 +132523,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132536,7 +132536,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132549,7 +132549,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132562,7 +132562,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132575,7 +132575,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -132585,7 +132585,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4h(Int32 index, Half x, Half y, Half z, Half w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -132595,49 +132595,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4h(UInt32 index, Half x, Half y, Half z, Half w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4h(Int32 index, [CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// /// [length: 4] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttrib4hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4h(UInt32 index, [CountAttribute(Count = 4)] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132659,7 +132659,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(); } + public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132681,7 +132681,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132694,7 +132694,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132707,7 +132707,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132720,7 +132720,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132733,7 +132733,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132746,7 +132746,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132759,7 +132759,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132781,7 +132781,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(); } + public static void VertexAttrib4(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132803,7 +132803,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttrib4(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132816,7 +132816,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132829,7 +132829,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132842,7 +132842,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132855,7 +132855,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132868,7 +132868,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Specifies the value of a generic vertex attribute @@ -132881,7 +132881,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttrib4ubvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// Specify the organization of vertex arrays @@ -132903,7 +132903,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(); } + public static void VertexAttribFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, bool normalized, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// Specify the organization of vertex arrays @@ -132925,7 +132925,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, bool normalized, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -132934,7 +132934,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribIFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -132943,49 +132943,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribIFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribL1(Int32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, Int64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -132993,7 +132993,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL2(Int32 index, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133001,49 +133001,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL2(UInt32 index, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133051,28 +133051,28 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL2(UInt32 index, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133081,7 +133081,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL3(Int32 index, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133090,49 +133090,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL3(UInt32 index, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133141,28 +133141,28 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL3(UInt32 index, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133172,7 +133172,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL4(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133182,49 +133182,49 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL4(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133234,28 +133234,28 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribL4(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133264,7 +133264,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -133273,7 +133273,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133295,7 +133295,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, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133319,7 +133319,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133343,7 +133343,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133367,7 +133367,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133391,7 +133391,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133413,7 +133413,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [CountAttribute(Computed = "fsize,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133437,7 +133437,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133461,7 +133461,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133485,7 +133485,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// Define an array of generic vertex attribute data @@ -133509,7 +133509,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 fsize, OpenTK.Graphics.OpenGL.VertexAttribParameterArb type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "fsize,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133517,7 +133517,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133525,7 +133525,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133533,7 +133533,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133541,7 +133541,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133549,7 +133549,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133557,7 +133557,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133565,7 +133565,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133573,7 +133573,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133581,7 +133581,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133589,7 +133589,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133597,7 +133597,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133605,7 +133605,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133613,7 +133613,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133621,7 +133621,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133629,7 +133629,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133637,7 +133637,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133645,7 +133645,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133653,7 +133653,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs1hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133661,7 +133661,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133669,7 +133669,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133677,7 +133677,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(Int32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133685,7 +133685,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133693,7 +133693,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133701,7 +133701,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs1svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs1(UInt32 index, Int32 count, [CountAttribute(Parameter = "count")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133709,7 +133709,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133717,7 +133717,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133725,7 +133725,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133733,7 +133733,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133741,7 +133741,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133749,7 +133749,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133757,7 +133757,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133765,7 +133765,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133773,7 +133773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133781,7 +133781,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133789,7 +133789,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133797,7 +133797,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133805,7 +133805,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133813,7 +133813,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133821,7 +133821,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133829,7 +133829,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133837,7 +133837,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133845,7 +133845,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs2hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133853,7 +133853,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133861,7 +133861,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133869,7 +133869,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(Int32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133877,7 +133877,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133885,7 +133885,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133893,7 +133893,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*2] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs2svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs2(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*2")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133901,7 +133901,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133909,7 +133909,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133917,7 +133917,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133925,7 +133925,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133933,7 +133933,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133941,7 +133941,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133949,7 +133949,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133957,7 +133957,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133965,7 +133965,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133973,7 +133973,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133981,7 +133981,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -133989,7 +133989,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -133997,7 +133997,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134005,7 +134005,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134013,7 +134013,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134021,7 +134021,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134029,7 +134029,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134037,7 +134037,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs3hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134045,7 +134045,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134053,7 +134053,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134061,7 +134061,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(Int32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134069,7 +134069,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134077,7 +134077,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134085,7 +134085,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*3] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs3svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs3(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*3")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134093,7 +134093,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134101,7 +134101,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134109,7 +134109,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134117,7 +134117,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134125,7 +134125,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134133,7 +134133,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4dvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134141,7 +134141,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134149,7 +134149,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134157,7 +134157,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134165,7 +134165,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134173,7 +134173,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134181,7 +134181,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4fvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134189,7 +134189,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134197,7 +134197,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134205,7 +134205,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4h(Int32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134213,7 +134213,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134221,7 +134221,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new NotImplementedException(); } + public static void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] ref Half v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// @@ -134229,7 +134229,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexAttribs4hvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4h(UInt32 index, Int32 n, [CountAttribute(Parameter = "n")] Half* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134237,7 +134237,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134245,7 +134245,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134253,7 +134253,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134261,7 +134261,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134269,7 +134269,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134277,7 +134277,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4svNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134285,7 +134285,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134293,7 +134293,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134301,7 +134301,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134309,7 +134309,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134317,7 +134317,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_program] /// @@ -134325,25 +134325,25 @@ namespace OpenTK.Graphics.OpenGL /// [length: count*4] [AutoGenerated(Category = "NV_vertex_program", Version = "", EntryPoint = "glVertexAttribs4ubvNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribs4(UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexFormatNV")] - public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexWeighthNV")] - public static void VertexWeighth(Half weight) { throw new NotImplementedException(); } + public static void VertexWeighth(Half weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_half_float] /// [length: 1] [AutoGenerated(Category = "NV_half_float", Version = "", EntryPoint = "glVertexWeighthvNV")] [CLSCompliant(false)] - public static unsafe void VertexWeighth([CountAttribute(Count = 1)] Half* weight) { throw new NotImplementedException(); } + public static unsafe void VertexWeighth([CountAttribute(Count = 1)] Half* weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134351,7 +134351,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] Int32[] sequence_num, [OutAttribute] Int64[] capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134359,7 +134359,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] out Int32 sequence_num, [OutAttribute] out Int64 capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134367,7 +134367,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(Int32 video_capture_slot, [OutAttribute] Int32* sequence_num, [OutAttribute] Int64* capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134375,7 +134375,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] UInt32[] sequence_num, [OutAttribute] UInt64[] capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134383,7 +134383,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] out UInt32 sequence_num, [OutAttribute] out UInt64 capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134391,7 +134391,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static unsafe OpenTK.Graphics.OpenGL.NvVideoCapture VideoCapture(UInt32 video_capture_slot, [OutAttribute] UInt32* sequence_num, [OutAttribute] UInt64* capture_time) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134400,7 +134400,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134409,7 +134409,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134418,7 +134418,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134427,7 +134427,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134436,7 +134436,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134445,7 +134445,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134454,7 +134454,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134463,7 +134463,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134472,7 +134472,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134481,7 +134481,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134490,7 +134490,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134499,7 +134499,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134508,7 +134508,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134517,7 +134517,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134526,7 +134526,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(Int32 video_capture_slot, Int32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134535,7 +134535,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134544,7 +134544,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_video_capture] /// @@ -134553,7 +134553,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void VideoCaptureStreamParameter(UInt32 video_capture_slot, UInt32 stream, OpenTK.Graphics.OpenGL.NvVideoCapture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -134561,7 +134561,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] [CLSCompliant(false)] - public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new NotImplementedException(); } + public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -134569,7 +134569,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] [CLSCompliant(false)] - public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new NotImplementedException(); } + public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -134579,7 +134579,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlex, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzley, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlez, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlex, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzley, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlez, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -134589,19 +134589,19 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlex, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzley, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlez, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlex, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzley, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlez, OpenTK.Graphics.OpenGL.NvViewportSwizzle swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134610,7 +134610,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134619,7 +134619,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134628,7 +134628,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134637,7 +134637,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134646,7 +134646,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -134655,7 +134655,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -134669,7 +134669,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNVX")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_conditional_render] /// Start conditional rendering @@ -134679,11 +134679,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNVX")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_conditional_render] [AutoGenerated(Category = "NVX_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNVX")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134705,7 +134705,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUCopyImageSubDataNVX")] [CLSCompliant(false)] - public static void LGPUCopyImageSubData(Int32 sourceGpu, Int32 destinationGpuMask, Int32 srcName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void LGPUCopyImageSubData(Int32 sourceGpu, Int32 destinationGpuMask, Int32 srcName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, Int32 dstName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134727,11 +134727,11 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUCopyImageSubDataNVX")] [CLSCompliant(false)] - public static void LGPUCopyImageSubData(UInt32 sourceGpu, UInt32 destinationGpuMask, UInt32 srcName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void LGPUCopyImageSubData(UInt32 sourceGpu, UInt32 destinationGpuMask, UInt32 srcName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast srcTarget, Int32 srcLevel, Int32 srcX, Int32 srxY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.NvxLinkedGpuMulticast dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUInterlockNVX")] - public static void LGPUInterlock() { throw new NotImplementedException(); } + public static void LGPUInterlock() { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134741,7 +134741,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUNamedBufferSubDataNVX")] [CLSCompliant(false)] - public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new NotImplementedException(); } + public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134753,7 +134753,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134765,7 +134765,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134777,7 +134777,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134789,7 +134789,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134799,7 +134799,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUNamedBufferSubDataNVX")] [CLSCompliant(false)] - public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } + public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134811,7 +134811,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134823,7 +134823,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134835,7 +134835,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134847,7 +134847,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(Int32 gpuMask, Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134857,7 +134857,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUNamedBufferSubDataNVX")] [CLSCompliant(false)] - public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new NotImplementedException(); } + public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134869,7 +134869,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134881,7 +134881,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134893,7 +134893,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134905,7 +134905,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134915,7 +134915,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "NVX_linked_gpu_multicast", Version = "", EntryPoint = "glLGPUNamedBufferSubDataNVX")] [CLSCompliant(false)] - public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); } + public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134927,7 +134927,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134939,7 +134939,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134951,7 +134951,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NVX_linked_gpu_multicast] /// @@ -134963,7 +134963,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void LGPUNamedBufferSubData(UInt32 gpuMask, UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -134973,13 +134973,13 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAccumxOES")] - public static void Accumx(OpenTK.Graphics.OpenGL.OesFixedPoint op, Int32 value) { throw new NotImplementedException(); } + public static void Accumx(OpenTK.Graphics.OpenGL.OesFixedPoint op, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAlphaFuncxOES")] - public static void AlphaFuncx(OpenTK.Graphics.OpenGL.OesFixedPoint func, Int32 @ref) { throw new NotImplementedException(); } + public static void AlphaFuncx(OpenTK.Graphics.OpenGL.OesFixedPoint func, Int32 @ref) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -134991,7 +134991,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new NotImplementedException(); } + public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte[] bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135003,7 +135003,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new NotImplementedException(); } + public static void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] ref Byte bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135015,7 +135015,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(width,height)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")] [CLSCompliant(false)] - public static unsafe void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new NotImplementedException(); } + public static unsafe void Bitmapx(Int32 width, Int32 height, Int32 xorig, Int32 yorig, Int32 xmove, Int32 ymove, [CountAttribute(Computed = "width,height")] Byte* bitmap) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135023,7 +135023,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBlendColorxOES")] - public static void BlendColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void BlendColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135031,7 +135031,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearAccumxOES")] - public static void ClearAccumx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearAccumx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135039,7 +135039,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearColorxOES")] - public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void ClearColorx(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify the clear value for the depth buffer @@ -135048,12 +135048,12 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClearDepthfOES")] - public static void ClearDepth(Single depth) { throw new NotImplementedException(); } + public static void ClearDepth(Single depth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearDepthxOES")] - public static void ClearDepthx(Int32 depth) { throw new NotImplementedException(); } + public static void ClearDepthx(Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -135066,7 +135066,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -135079,7 +135079,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] ref Single equation) { throw new NotImplementedException(); } + public static void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] ref Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify a plane against which all geometry is clipped @@ -135092,53 +135092,53 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new NotImplementedException(); } + public static void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] ref Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void ClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xOES")] - public static void Color3x(Int32 red, Int32 green, Int32 blue) { throw new NotImplementedException(); } + public static void Color3x(Int32 red, Int32 green, Int32 blue) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static void Color3x([CountAttribute(Count = 3)] Int32[] components) { throw new NotImplementedException(); } + public static void Color3x([CountAttribute(Count = 3)] Int32[] components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static void Color3x([CountAttribute(Count = 3)] ref Int32 components) { throw new NotImplementedException(); } + public static void Color3x([CountAttribute(Count = 3)] ref Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")] [CLSCompliant(false)] - public static unsafe void Color3x([CountAttribute(Count = 3)] Int32* components) { throw new NotImplementedException(); } + public static unsafe void Color3x([CountAttribute(Count = 3)] Int32* components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135146,32 +135146,32 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xOES")] - public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new NotImplementedException(); } + public static void Color4x(Int32 red, Int32 green, Int32 blue, Int32 alpha) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static void Color4x([CountAttribute(Count = 4)] Int32[] components) { throw new NotImplementedException(); } + public static void Color4x([CountAttribute(Count = 4)] Int32[] components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static void Color4x([CountAttribute(Count = 4)] ref Int32 components) { throw new NotImplementedException(); } + public static void Color4x([CountAttribute(Count = 4)] ref Int32 components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")] [CLSCompliant(false)] - public static unsafe void Color4x([CountAttribute(Count = 4)] Int32* components) { throw new NotImplementedException(); } + public static unsafe void Color4x([CountAttribute(Count = 4)] Int32* components) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxOES")] - public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135179,7 +135179,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")] [CLSCompliant(false)] - public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135187,7 +135187,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -135199,48 +135199,48 @@ namespace OpenTK.Graphics.OpenGL /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glDepthRangefOES")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glDepthRangexOES")] - public static void DepthRangex(Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void DepthRangex(Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xOES")] - public static void EvalCoord1x(Int32 u) { throw new NotImplementedException(); } + public static void EvalCoord1x(Int32 u) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void EvalCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void EvalCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xOES")] - public static void EvalCoord2x(Int32 u, Int32 v) { throw new NotImplementedException(); } + public static void EvalCoord2x(Int32 u, Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static void EvalCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void EvalCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static void EvalCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void EvalCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void EvalCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void EvalCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135248,7 +135248,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] Int32[] buffer) { throw new NotImplementedException(); } + public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] Int32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135256,7 +135256,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] ref Int32 buffer) { throw new NotImplementedException(); } + public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] ref Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135264,27 +135264,27 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")] [CLSCompliant(false)] - public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] Int32* buffer) { throw new NotImplementedException(); } + public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.OpenGL.OesFixedPoint type, [CountAttribute(Parameter = "n")] Int32* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxOES")] - public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")] [CLSCompliant(false)] - public static unsafe void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Fogx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix by a perspective matrix @@ -135308,7 +135308,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the distances to the near and far depth clipping planes. Both distances must be positive. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glFrustumfOES")] - public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135318,7 +135318,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFrustumxOES")] - public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Frustumx(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -135331,7 +135331,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, CountAttribute(Count = 4)] Single[] equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -135344,7 +135344,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, CountAttribute(Count = 4)] out Single equation) { throw new NotImplementedException(); } + public static void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] out Single equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Return the coefficients of the specified clipping plane @@ -135357,28 +135357,28 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.OesSinglePrecision plane, [OutAttribute, CountAttribute(Count = 4)] Single* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new NotImplementedException(); } + public static void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] out Int32 equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")] [CLSCompliant(false)] - public static unsafe void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new NotImplementedException(); } + public static unsafe void GetClipPlanex(OpenTK.Graphics.OpenGL.OesFixedPoint plane, [OutAttribute, CountAttribute(Count = 4)] Int32* equation) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135386,7 +135386,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135394,7 +135394,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135402,34 +135402,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static Int32 GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname) { throw new NotImplementedException(); } + public static Int32 GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")] [CLSCompliant(false)] - public static unsafe void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFixed(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135437,7 +135437,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135445,7 +135445,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135453,7 +135453,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135461,7 +135461,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135469,7 +135469,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135477,7 +135477,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetLightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135485,7 +135485,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [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, CountAttribute(Computed = "query")] Int32[] v) { throw new NotImplementedException(); } + public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135493,7 +135493,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [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, CountAttribute(Computed = "query")] out Int32 v) { throw new NotImplementedException(); } + public static void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135501,14 +135501,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(query)] [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, CountAttribute(Computed = "query")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetMapx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint query, [OutAttribute, CountAttribute(Computed = "query")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxOES")] - public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135516,7 +135516,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135524,7 +135524,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMaterialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135532,7 +135532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135540,7 +135540,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135548,7 +135548,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135556,7 +135556,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135564,7 +135564,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135572,7 +135572,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135581,7 +135581,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135590,7 +135590,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135599,7 +135599,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 level, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135607,7 +135607,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135615,7 +135615,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135623,45 +135623,45 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxOES")] - public static void Indexx(Int32 component) { throw new NotImplementedException(); } + public static void Indexx(Int32 component) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxvOES")] [CLSCompliant(false)] - public static unsafe void Indexx([CountAttribute(Count = 1)] Int32* component) { throw new NotImplementedException(); } + public static unsafe void Indexx([CountAttribute(Count = 1)] Int32* component) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxOES")] - public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")] [CLSCompliant(false)] - public static unsafe void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void LightModelx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxOES")] - public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135669,7 +135669,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")] [CLSCompliant(false)] - public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135677,48 +135677,48 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void Lightx(OpenTK.Graphics.OpenGL.OesFixedPoint light, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLineWidthxOES")] - public static void LineWidthx(Int32 width) { throw new NotImplementedException(); } + public static void LineWidthx(Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")] [CLSCompliant(false)] - public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void LoadTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")] [CLSCompliant(false)] - public static unsafe void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void LoadTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135728,7 +135728,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap1xOES")] - public static void Map1x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new NotImplementedException(); } + public static void Map1x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 stride, Int32 order, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135742,14 +135742,14 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap2xOES")] - public static void Map2x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new NotImplementedException(); } + public static void Map2x(OpenTK.Graphics.OpenGL.OesFixedPoint target, Int32 u1, Int32 u2, Int32 ustride, Int32 uorder, Int32 v1, Int32 v2, Int32 vstride, Int32 vorder, Int32 points) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid1xOES")] - public static void MapGrid1x(Int32 n, Int32 u1, Int32 u2) { throw new NotImplementedException(); } + public static void MapGrid1x(Int32 n, Int32 u1, Int32 u2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135758,14 +135758,14 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid2xOES")] - public static void MapGrid2x(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void MapGrid2x(Int32 n, Int32 u1, Int32 u2, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxOES")] - public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135773,7 +135773,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")] [CLSCompliant(false)] - public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -135781,7 +135781,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void Materialx(OpenTK.Graphics.OpenGL.OesFixedPoint face, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135794,7 +135794,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(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135807,7 +135807,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")] [CLSCompliant(false)] - public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s) { throw new NotImplementedException(); } + public static void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135820,7 +135820,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135833,20 +135833,20 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xOES")] - public static void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s) { throw new NotImplementedException(); } + public static void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord1x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135862,7 +135862,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(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135878,7 +135878,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135891,7 +135891,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135904,7 +135904,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135917,7 +135917,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135930,7 +135930,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135943,7 +135943,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -135956,35 +135956,35 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xOES")] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord2x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136003,7 +136003,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(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136022,7 +136022,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136035,7 +136035,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136048,7 +136048,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136061,7 +136061,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136074,7 +136074,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136087,7 +136087,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136100,7 +136100,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136108,28 +136108,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xOES")] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord3x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136151,7 +136151,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(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136173,7 +136173,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136186,7 +136186,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136199,7 +136199,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136212,7 +136212,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136225,7 +136225,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136238,7 +136238,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136251,7 +136251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4(OpenTK.Graphics.OpenGL.OesByteCoordinates texture, [CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136260,89 +136260,89 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xOES")] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoord4x(OpenTK.Graphics.OpenGL.OesFixedPoint texture, [CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")] [CLSCompliant(false)] - public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new NotImplementedException(); } + public static void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32[] m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static void MultTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new NotImplementedException(); } + public static void MultTransposeMatrixx([CountAttribute(Count = 16)] ref Int32 m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 16] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")] [CLSCompliant(false)] - public static unsafe void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new NotImplementedException(); } + public static unsafe void MultTransposeMatrixx([CountAttribute(Count = 16)] Int32* m) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xOES")] - public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new NotImplementedException(); } + public static void Normal3x(Int32 nx, Int32 ny, Int32 nz) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static void Normal3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void Normal3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static void Normal3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Normal3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")] [CLSCompliant(false)] - public static unsafe void Normal3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Normal3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_single_precision] /// Multiply the current matrix with an orthographic matrix @@ -136366,7 +136366,7 @@ namespace OpenTK.Graphics.OpenGL /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer. /// [AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glOrthofOES")] - public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); } + public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136376,55 +136376,55 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glOrthoxOES")] - public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new NotImplementedException(); } + public static void Orthox(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPassThroughxOES")] - public static void PassThroughx(Int32 token) { throw new NotImplementedException(); } + public static void PassThroughx(Int32 token) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelTransferxOES")] - public static void PixelTransferx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTransferx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelZoomxOES")] - public static void PixelZoomx(Int32 xfactor, Int32 yfactor) { throw new NotImplementedException(); } + public static void PixelZoomx(Int32 xfactor, Int32 yfactor) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxOES")] - public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] [CLSCompliant(false)] - public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")] [CLSCompliant(false)] - public static unsafe void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointSizexOES")] - public static void PointSizex(Int32 size) { throw new NotImplementedException(); } + public static void PointSizex(Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPolygonOffsetxOES")] - public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new NotImplementedException(); } + public static void PolygonOffsetx(Int32 factor, Int32 units) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136432,7 +136432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136440,7 +136440,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136448,7 +136448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136456,7 +136456,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures, [CountAttribute(Parameter = "n")] Int32[] priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136464,7 +136464,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new NotImplementedException(); } + public static void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures, [CountAttribute(Parameter = "n")] ref Int32 priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136472,77 +136472,77 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")] [CLSCompliant(false)] - public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new NotImplementedException(); } + public static unsafe void PrioritizeTexturesx(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures, [CountAttribute(Parameter = "n")] Int32* priorities) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32[] mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32[] exponent) { throw new NotImplementedException(); } + public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32[] mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32[] exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] out Int32 mantissa, [OutAttribute, CountAttribute(Count = 16)] out Int32 exponent) { throw new NotImplementedException(); } + public static Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] out Int32 mantissa, [OutAttribute, CountAttribute(Count = 16)] out Int32 exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_query_matrix] /// [length: 16] /// [length: 16] [AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")] [CLSCompliant(false)] - public static unsafe Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent) { throw new NotImplementedException(); } + public static unsafe Int32 QueryMatrixx([OutAttribute, CountAttribute(Count = 16)] Int32* mantissa, [OutAttribute, CountAttribute(Count = 16)] Int32* exponent) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xOES")] - public static void RasterPos2x(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void RasterPos2x(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static void RasterPos2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static void RasterPos2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xOES")] - public static void RasterPos3x(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void RasterPos3x(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static void RasterPos3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static void RasterPos3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136550,25 +136550,25 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xOES")] - public static void RasterPos4x(Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void RasterPos4x(Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static void RasterPos4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void RasterPos4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static void RasterPos4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void RasterPos4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")] [CLSCompliant(false)] - public static unsafe void RasterPos4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void RasterPos4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136576,28 +136576,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxOES")] - public static void Rectx(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new NotImplementedException(); } + public static void Rectx(Int32 x1, Int32 y1, Int32 x2, Int32 y2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static void Rectx([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new NotImplementedException(); } + public static void Rectx([CountAttribute(Count = 2)] Int32[] v1, [CountAttribute(Count = 2)] Int32[] v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static void Rectx([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new NotImplementedException(); } + public static void Rectx([CountAttribute(Count = 2)] ref Int32 v1, [CountAttribute(Count = 2)] ref Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")] [CLSCompliant(false)] - public static unsafe void Rectx([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new NotImplementedException(); } + public static unsafe void Rectx([CountAttribute(Count = 2)] Int32* v1, [CountAttribute(Count = 2)] Int32* v2) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -136605,20 +136605,20 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRotatexOES")] - public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Rotatex(Int32 angle, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glSampleCoveragexOES")] - public static void SampleCoveragex(Int32 value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoveragex(Int32 value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glScalexOES")] - public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Scalex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136628,7 +136628,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] [CLSCompliant(false)] - public static void TexCoord1(Byte s) { throw new NotImplementedException(); } + public static void TexCoord1(Byte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136638,7 +136638,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")] [CLSCompliant(false)] - public static void TexCoord1(SByte s) { throw new NotImplementedException(); } + public static void TexCoord1(SByte s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136648,7 +136648,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136658,18 +136658,18 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1([CountAttribute(Count = 1)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1([CountAttribute(Count = 1)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xOES")] - public static void TexCoord1x(Int32 s) { throw new NotImplementedException(); } + public static void TexCoord1x(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 1] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord1x([CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136682,7 +136682,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(); } + public static void TexCoord2(Byte s, Byte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136695,7 +136695,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")] [CLSCompliant(false)] - public static void TexCoord2(SByte s, SByte t) { throw new NotImplementedException(); } + public static void TexCoord2(SByte s, SByte t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136705,7 +136705,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136715,7 +136715,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136725,7 +136725,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136735,7 +136735,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136745,7 +136745,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static void TexCoord2([CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord2([CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136755,31 +136755,31 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2([CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2([CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xOES")] - public static void TexCoord2x(Int32 s, Int32 t) { throw new NotImplementedException(); } + public static void TexCoord2x(Int32 s, Int32 t) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static void TexCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static void TexCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord2x([CountAttribute(Count = 2)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136795,7 +136795,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(); } + public static void TexCoord3(Byte s, Byte t, Byte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136811,7 +136811,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")] [CLSCompliant(false)] - public static void TexCoord3(SByte s, SByte t, SByte r) { throw new NotImplementedException(); } + public static void TexCoord3(SByte s, SByte t, SByte r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136821,7 +136821,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136831,7 +136831,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136841,7 +136841,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136851,7 +136851,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136861,7 +136861,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static void TexCoord3([CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord3([CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136871,32 +136871,32 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3([CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3([CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xOES")] - public static void TexCoord3x(Int32 s, Int32 t, Int32 r) { throw new NotImplementedException(); } + public static void TexCoord3x(Int32 s, Int32 t, Int32 r) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static void TexCoord3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static void TexCoord3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136915,7 +136915,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(); } + public static void TexCoord4(Byte s, Byte t, Byte r, Byte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136934,7 +136934,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void TexCoord4(SByte s, SByte t, SByte r, SByte q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136944,7 +136944,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136954,7 +136954,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136964,7 +136964,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136974,7 +136974,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136984,7 +136984,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static void TexCoord4([CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void TexCoord4([CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Set the current texture coordinates @@ -136994,7 +136994,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4([CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4([CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137002,32 +137002,32 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xOES")] - public static void TexCoord4x(Int32 s, Int32 t, Int32 r, Int32 q) { throw new NotImplementedException(); } + public static void TexCoord4x(Int32 s, Int32 t, Int32 r, Int32 q) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static void TexCoord4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void TexCoord4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static void TexCoord4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void TexCoord4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")] [CLSCompliant(false)] - public static unsafe void TexCoord4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoord4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxOES")] - public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137035,7 +137035,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")] [CLSCompliant(false)] - public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137043,14 +137043,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexEnvx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxOES")] - public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137058,7 +137058,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexGenxvOES")] [CLSCompliant(false)] - public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137066,14 +137066,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexGenx(OpenTK.Graphics.OpenGL.OesFixedPoint coord, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxOES")] - public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137081,7 +137081,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")] [CLSCompliant(false)] - public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// @@ -137089,14 +137089,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterx(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTranslatexOES")] - public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Translatex(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137109,7 +137109,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] [CLSCompliant(false)] - public static void Vertex2(Byte x, Byte y) { throw new NotImplementedException(); } + public static void Vertex2(Byte x, Byte y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137122,7 +137122,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")] [CLSCompliant(false)] - public static void Vertex2(SByte x, SByte y) { throw new NotImplementedException(); } + public static void Vertex2(SByte x, SByte y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137132,7 +137132,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137142,7 +137142,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137152,7 +137152,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137162,7 +137162,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137172,7 +137172,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static void Vertex2([CountAttribute(Count = 2)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex2([CountAttribute(Count = 2)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137182,24 +137182,24 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2([CountAttribute(Count = 2)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2([CountAttribute(Count = 2)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xOES")] - public static void Vertex2x(Int32 x) { throw new NotImplementedException(); } + public static void Vertex2x(Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] [CLSCompliant(false)] - public static void Vertex2x([CountAttribute(Count = 2)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex2x([CountAttribute(Count = 2)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 2] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex2x([CountAttribute(Count = 2)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex2x([CountAttribute(Count = 2)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137215,7 +137215,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] [CLSCompliant(false)] - public static void Vertex3(Byte x, Byte y, Byte z) { throw new NotImplementedException(); } + public static void Vertex3(Byte x, Byte y, Byte z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137231,7 +137231,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")] [CLSCompliant(false)] - public static void Vertex3(SByte x, SByte y, SByte z) { throw new NotImplementedException(); } + public static void Vertex3(SByte x, SByte y, SByte z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137241,7 +137241,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137251,7 +137251,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137261,7 +137261,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137271,7 +137271,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137281,7 +137281,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static void Vertex3([CountAttribute(Count = 3)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex3([CountAttribute(Count = 3)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137291,31 +137291,31 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3([CountAttribute(Count = 3)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3([CountAttribute(Count = 3)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xOES")] - public static void Vertex3x(Int32 x, Int32 y) { throw new NotImplementedException(); } + public static void Vertex3x(Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static void Vertex3x([CountAttribute(Count = 3)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex3x([CountAttribute(Count = 3)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static void Vertex3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Vertex3x([CountAttribute(Count = 3)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 3] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex3x([CountAttribute(Count = 3)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex3x([CountAttribute(Count = 3)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137334,7 +137334,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, Byte w) { throw new NotImplementedException(); } + public static void Vertex4(Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137353,7 +137353,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")] [CLSCompliant(false)] - public static void Vertex4(SByte x, SByte y, SByte z, SByte w) { throw new NotImplementedException(); } + public static void Vertex4(SByte x, SByte y, SByte z, SByte w) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137363,7 +137363,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] Byte[] coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] Byte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137373,7 +137373,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref Byte coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref Byte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137383,7 +137383,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] Byte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] Byte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137393,7 +137393,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] SByte[] coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] SByte[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137403,7 +137403,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static void Vertex4([CountAttribute(Count = 4)] ref SByte coords) { throw new NotImplementedException(); } + public static void Vertex4([CountAttribute(Count = 4)] ref SByte coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_byte_coordinates] /// Specify a vertex @@ -137413,32 +137413,32 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4([CountAttribute(Count = 4)] SByte* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4([CountAttribute(Count = 4)] SByte* coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// /// /// [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xOES")] - public static void Vertex4x(Int32 x, Int32 y, Int32 z) { throw new NotImplementedException(); } + public static void Vertex4x(Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static void Vertex4x([CountAttribute(Count = 4)] Int32[] coords) { throw new NotImplementedException(); } + public static void Vertex4x([CountAttribute(Count = 4)] Int32[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static void Vertex4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new NotImplementedException(); } + public static void Vertex4x([CountAttribute(Count = 4)] ref Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: OES_fixed_point] /// [length: 4] [AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")] [CLSCompliant(false)] - public static unsafe void Vertex4x([CountAttribute(Count = 4)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void Vertex4x([CountAttribute(Count = 4)] Int32* coords) { throw new BindingsNotRewrittenException(); } } @@ -137453,7 +137453,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -137464,7 +137464,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } @@ -137480,7 +137480,7 @@ namespace OpenTK.Graphics.OpenGL /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "PGI_misc_hints", Version = "", EntryPoint = "glHintPGI")] - public static void Hint(OpenTK.Graphics.OpenGL.PgiMiscHints target, Int32 mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.OpenGL.PgiMiscHints target, Int32 mode) { throw new BindingsNotRewrittenException(); } } @@ -137500,7 +137500,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137516,7 +137516,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, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137532,7 +137532,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137549,7 +137549,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137566,7 +137566,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, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137583,7 +137583,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137599,7 +137599,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137615,7 +137615,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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137631,7 +137631,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137648,7 +137648,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137665,7 +137665,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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Set color lookup table parameters @@ -137682,7 +137682,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137706,7 +137706,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137733,7 +137733,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137760,7 +137760,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137787,7 +137787,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137813,7 +137813,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] 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, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137838,7 +137838,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137866,7 +137866,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137894,7 +137894,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137922,7 +137922,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Define a color lookup table @@ -137949,7 +137949,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glColorTableSGI")] 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, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Copy pixels into a color table @@ -137970,7 +137970,7 @@ namespace OpenTK.Graphics.OpenGL /// The width of the pixel rectangle. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glCopyColorTableSGI")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Copy pixels into a color table @@ -137992,7 +137992,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glCopyColorTableSGI")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138008,7 +138008,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138024,7 +138024,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138040,7 +138040,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138057,7 +138057,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138074,7 +138074,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138091,7 +138091,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138107,7 +138107,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138123,7 +138123,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138139,7 +138139,7 @@ namespace OpenTK.Graphics.OpenGL /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138156,7 +138156,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138173,7 +138173,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Get color lookup table parameters @@ -138190,7 +138190,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use ColorTableTargetSgi overload instead")] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138208,7 +138208,7 @@ namespace OpenTK.Graphics.OpenGL /// Pointer to a one-dimensional array of pixel data containing the contents of the color table. /// [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] - public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138229,7 +138229,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138250,7 +138250,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138271,7 +138271,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138291,7 +138291,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] public static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138310,7 +138310,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use ColorTableTargetSgi overload instead")] [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] - public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138332,7 +138332,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138354,7 +138354,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138376,7 +138376,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGI_color_table] /// Retrieve contents of a color lookup table @@ -138397,7 +138397,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGI_color_table", Version = "", EntryPoint = "glGetColorTableSGI")] public static void GetColorTable(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -138409,7 +138409,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] [CLSCompliant(false)] - public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new NotImplementedException(); } + public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// @@ -138417,7 +138417,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] [CLSCompliant(false)] - public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new NotImplementedException(); } + public static void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// @@ -138425,112 +138425,112 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glDetailTexFuncSGIS")] [CLSCompliant(false)] - public static unsafe void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new NotImplementedException(); } + public static unsafe void DetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// /// [length: n*2] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] [CLSCompliant(false)] - public static void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new NotImplementedException(); } + public static void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// /// [length: n*2] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] [CLSCompliant(false)] - public static void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new NotImplementedException(); } + public static void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// /// [length: n*2] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glFogFuncSGIS")] [CLSCompliant(false)] - public static unsafe void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new NotImplementedException(); } + public static unsafe void FogFunc(Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] [CLSCompliant(false)] - public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single[] points) { throw new NotImplementedException(); } + public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] [CLSCompliant(false)] - public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] out Single points) { throw new NotImplementedException(); } + public static void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] out Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_detail_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_detail_texture", Version = "", EntryPoint = "glGetDetailTexFuncSGIS")] [CLSCompliant(false)] - public static unsafe void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single* points) { throw new NotImplementedException(); } + public static unsafe void GetDetailTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] [CLSCompliant(false)] - public static Single GetFogFunc() { throw new NotImplementedException(); } + public static Single GetFogFunc() { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// [length: COMPSIZE()] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] [CLSCompliant(false)] - public static void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] Single[] points) { throw new NotImplementedException(); } + public static void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// [length: COMPSIZE()] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] [CLSCompliant(false)] - public static void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] out Single points) { throw new NotImplementedException(); } + public static void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] out Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_fog_function] /// [length: COMPSIZE()] [AutoGenerated(Category = "SGIS_fog_function", Version = "", EntryPoint = "glGetFogFuncSGIS")] [CLSCompliant(false)] - public static unsafe void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] Single* points) { throw new NotImplementedException(); } + public static unsafe void GetFogFunc([OutAttribute, CountAttribute(Computed = "")] Single* points) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138538,7 +138538,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138546,7 +138546,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138554,28 +138554,28 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138583,7 +138583,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138591,7 +138591,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138599,34 +138599,34 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glGetPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetPixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single[] points) { throw new NotImplementedException(); } + public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] out Single points) { throw new NotImplementedException(); } + public static void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] out Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// /// [length: COMPSIZE(target)] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glGetSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static unsafe void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single* points) { throw new NotImplementedException(); } + public static unsafe void GetSharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute, CountAttribute(Computed = "target")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138634,7 +138634,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,filter)] [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, CountAttribute(Computed = "target,filter")] Single[] weights) { throw new NotImplementedException(); } + public static void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138642,7 +138642,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,filter)] [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, CountAttribute(Computed = "target,filter")] out Single weights) { throw new NotImplementedException(); } + public static void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] out Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138650,34 +138650,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,filter)] [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, CountAttribute(Computed = "target,filter")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void GetTexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute, CountAttribute(Computed = "target,filter")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfSGIS")] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single param) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfSGIS")] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single param) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138685,7 +138685,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138693,34 +138693,34 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameteriSGIS")] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameteriSGIS")] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138728,7 +138728,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_pixel_texture] /// @@ -138736,7 +138736,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PixelTexGenParameterNameSgis overload instead")] [AutoGenerated(Category = "SGIS_pixel_texture", Version = "", EntryPoint = "glPixelTexGenParameterivSGIS")] [CLSCompliant(false)] - public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PixelTexGenParameter(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_point_parameters] /// Specify point parameters @@ -138748,7 +138748,7 @@ namespace OpenTK.Graphics.OpenGL /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "SGIS_point_parameters", Version = "", EntryPoint = "glPointParameterfSGIS")] - public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_point_parameters] /// Specify point parameters @@ -138761,7 +138761,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIS_point_parameters", Version = "", EntryPoint = "glPointParameterfvSGIS")] [CLSCompliant(false)] - public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_point_parameters] /// Specify point parameters @@ -138774,24 +138774,24 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIS_point_parameters", Version = "", EntryPoint = "glPointParameterfvSGIS")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL.SgisPointParameters pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_multisample] /// /// [AutoGenerated(Category = "SGIS_multisample", Version = "", EntryPoint = "glSampleMaskSGIS")] - public static void SampleMask(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleMask(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_multisample] /// [AutoGenerated(Category = "SGIS_multisample", Version = "", EntryPoint = "glSamplePatternSGIS")] - public static void SamplePattern(OpenTK.Graphics.OpenGL.SamplePatternSgis pattern) { throw new NotImplementedException(); } + public static void SamplePattern(OpenTK.Graphics.OpenGL.SamplePatternSgis pattern) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_multisample] /// [Obsolete("Use SamplePatternSgis overload instead")] [AutoGenerated(Category = "SGIS_multisample", Version = "", EntryPoint = "glSamplePatternSGIS")] - public static void SamplePattern(OpenTK.Graphics.OpenGL.SgisMultisample pattern) { throw new NotImplementedException(); } + public static void SamplePattern(OpenTK.Graphics.OpenGL.SgisMultisample pattern) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// @@ -138799,7 +138799,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new NotImplementedException(); } + public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// @@ -138807,7 +138807,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new NotImplementedException(); } + public static void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_sharpen_texture] /// @@ -138815,7 +138815,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n*2] [AutoGenerated(Category = "SGIS_sharpen_texture", Version = "", EntryPoint = "glSharpenTexFuncSGIS")] [CLSCompliant(false)] - public static unsafe void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new NotImplementedException(); } + public static unsafe void SharpenTexFunc(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, [CountAttribute(Parameter = "n*2")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138824,7 +138824,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [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, [CountAttribute(Parameter = "n")] Single[] weights) { throw new NotImplementedException(); } + public static void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138833,7 +138833,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [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, [CountAttribute(Parameter = "n")] ref Single weights) { throw new NotImplementedException(); } + public static void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_filter4] /// @@ -138842,7 +138842,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: n] [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, [CountAttribute(Parameter = "n")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void TexFilterFunc(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, [CountAttribute(Parameter = "n")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138857,7 +138857,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] - 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, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138875,7 +138875,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138893,7 +138893,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138911,7 +138911,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138928,7 +138928,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexImage4DSGIS")] 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, CountAttribute(Computed = "format,type,width,height,depth,size4d")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138945,7 +138945,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [length: COMPSIZE(format,type,width,height,depth,size4d)] [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexSubImage4DSGIS")] - 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, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth,size4d")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138965,7 +138965,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T12[] pixels) where T12 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -138985,7 +138985,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T12[,] pixels) where T12 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -139005,7 +139005,7 @@ namespace OpenTK.Graphics.OpenGL [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, CountAttribute(Computed = "format,type,width,height,depth,size4d")] T12[,,] pixels) where T12 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture4D] /// @@ -139024,7 +139024,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGIS_texture4D", Version = "", EntryPoint = "glTexSubImage4DSGIS")] 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, CountAttribute(Computed = "format,type,width,height,depth,size4d")] ref T12 pixels) where T12 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIS_texture_color_mask] /// @@ -139032,7 +139032,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SGIS_texture_color_mask", Version = "", EntryPoint = "glTextureColorMaskSGIS")] - public static void TextureColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void TextureColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } } @@ -139042,13 +139042,13 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glAsyncMarkerSGIX")] [CLSCompliant(false)] - public static void AsyncMarker(Int32 marker) { throw new NotImplementedException(); } + public static void AsyncMarker(Int32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glAsyncMarkerSGIX")] [CLSCompliant(false)] - public static void AsyncMarker(UInt32 marker) { throw new NotImplementedException(); } + public static void AsyncMarker(UInt32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139067,7 +139067,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double[] points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139086,7 +139086,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Double points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139105,7 +139105,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139125,7 +139125,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double[] points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139145,7 +139145,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Double points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Double points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139165,7 +139165,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FfdTargetSgix overload instead")] [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Double* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139184,7 +139184,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single[] points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139203,7 +139203,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Single points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139222,7 +139222,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(target,ustride,uorder,vstride,vorder,wstride,worder)] [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139242,7 +139242,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single[] points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single[] points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139262,7 +139262,7 @@ namespace OpenTK.Graphics.OpenGL [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Single points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] ref Single points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// @@ -139282,80 +139282,80 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FfdTargetSgix overload instead")] [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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single* points) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,ustride,uorder,vstride,vorder,wstride,worder")] Single* points) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformSGIX")] - public static void Deform(OpenTK.Graphics.OpenGL.FfdMaskSgix mask) { throw new NotImplementedException(); } + public static void Deform(OpenTK.Graphics.OpenGL.FfdMaskSgix mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [Obsolete("Use FfdMaskSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformSGIX")] - public static void Deform(Int32 mask) { throw new NotImplementedException(); } + public static void Deform(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [Obsolete("Use FfdMaskSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glDeformSGIX")] [CLSCompliant(false)] - public static void Deform(UInt32 mask) { throw new NotImplementedException(); } + public static void Deform(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glDeleteAsyncMarkersSGIX")] [CLSCompliant(false)] - public static void DeleteAsyncMarkers(Int32 marker, Int32 range) { throw new NotImplementedException(); } + public static void DeleteAsyncMarkers(Int32 marker, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glDeleteAsyncMarkersSGIX")] [CLSCompliant(false)] - public static void DeleteAsyncMarkers(UInt32 marker, Int32 range) { throw new NotImplementedException(); } + public static void DeleteAsyncMarkers(UInt32 marker, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] [CLSCompliant(false)] - public static Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] out Int32 markerp) { throw new NotImplementedException(); } + public static Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] out Int32 markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] [CLSCompliant(false)] - public static unsafe Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] Int32* markerp) { throw new NotImplementedException(); } + public static unsafe Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] Int32* markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] [CLSCompliant(false)] - public static Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] out UInt32 markerp) { throw new NotImplementedException(); } + public static Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] out UInt32 markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glFinishAsyncSGIX")] [CLSCompliant(false)] - public static unsafe Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp) { throw new NotImplementedException(); } + public static unsafe Int32 FinishAsync([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_flush_raster] [AutoGenerated(Category = "SGIX_flush_raster", Version = "", EntryPoint = "glFlushRasterSGIX")] - public static void FlushRaster() { throw new NotImplementedException(); } + public static void FlushRaster() { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentColorMaterialSGIX")] - public static void FragmentColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) { throw new NotImplementedException(); } + public static void FragmentColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightfSGIX")] - public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param) { throw new NotImplementedException(); } + public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139363,7 +139363,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightfvSGIX")] [CLSCompliant(false)] - public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139371,14 +139371,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightiSGIX")] - public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new NotImplementedException(); } + public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139386,7 +139386,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightivSGIX")] [CLSCompliant(false)] - public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139394,34 +139394,34 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfSGIX")] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single param) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfSGIX")] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] [CLSCompliant(false)] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139429,7 +139429,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] [CLSCompliant(false)] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139437,34 +139437,34 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelfvSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModeliSGIX")] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32 param) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModeliSGIX")] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] [CLSCompliant(false)] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139472,7 +139472,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] [CLSCompliant(false)] - public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139480,14 +139480,14 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use FragmentLightModelParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentLightModelivSGIX")] [CLSCompliant(false)] - public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentLightModel(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialfSGIX")] - public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) { throw new NotImplementedException(); } + public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139495,7 +139495,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialfvSGIX")] [CLSCompliant(false)] - public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139503,14 +139503,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialiSGIX")] - public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139518,7 +139518,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glFragmentMaterialivSGIX")] [CLSCompliant(false)] - public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139526,17 +139526,17 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void FragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_framezoom] /// [AutoGenerated(Category = "SGIX_framezoom", Version = "", EntryPoint = "glFrameZoomSGIX")] - public static void FrameZoom(Int32 factor) { throw new NotImplementedException(); } + public static void FrameZoom(Int32 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glGenAsyncMarkersSGIX")] - public static Int32 GenAsyncMarkers(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenAsyncMarkers(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139544,7 +139544,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139552,7 +139552,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139560,7 +139560,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139568,7 +139568,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139576,7 +139576,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139584,7 +139584,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFragmentLight(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139592,7 +139592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139600,7 +139600,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139608,7 +139608,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139616,7 +139616,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139624,7 +139624,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// @@ -139632,11 +139632,11 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFragmentMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glGetInstrumentsSGIX")] - public static Int32 GetInstruments() { throw new NotImplementedException(); } + public static Int32 GetInstruments() { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139644,7 +139644,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139652,7 +139652,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139660,7 +139660,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139668,7 +139668,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139676,7 +139676,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139684,7 +139684,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139692,7 +139692,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139700,7 +139700,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139708,7 +139708,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139716,7 +139716,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139724,7 +139724,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139732,14 +139732,14 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glGetListParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// /// [length: COMPSIZE(pname)] [Obsolete("Use SgixIglooInterface overload instead")] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] - public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [CountAttribute(Computed = "pname")] IntPtr @params) { throw new NotImplementedException(); } + public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [CountAttribute(Computed = "pname")] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139749,7 +139749,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139759,7 +139759,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139769,7 +139769,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139778,13 +139778,13 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] public static void IglooInterface(OpenTK.Graphics.OpenGL.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] - public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [CountAttribute(Computed = "pname")] IntPtr @params) { throw new NotImplementedException(); } + public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [CountAttribute(Computed = "pname")] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139793,7 +139793,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139802,7 +139802,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139811,7 +139811,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_igloo_interface] /// @@ -139819,53 +139819,53 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SGIX_igloo_interface", Version = "", EntryPoint = "glIglooInterfaceSGIX")] public static void IglooInterface(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// /// [length: size] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] [CLSCompliant(false)] - public static void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] buffer) { throw new NotImplementedException(); } + public static void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32[] buffer) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// /// [length: size] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] [CLSCompliant(false)] - public static void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 buffer) { throw new NotImplementedException(); } + public static void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] out Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// /// [length: size] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glInstrumentsBufferSGIX")] [CLSCompliant(false)] - public static unsafe void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer) { throw new NotImplementedException(); } + public static unsafe void InstrumentsBuffer(Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] Int32* buffer) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glIsAsyncMarkerSGIX")] [CLSCompliant(false)] - public static bool IsAsyncMarker(Int32 marker) { throw new NotImplementedException(); } + public static bool IsAsyncMarker(Int32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glIsAsyncMarkerSGIX")] [CLSCompliant(false)] - public static bool IsAsyncMarker(UInt32 marker) { throw new NotImplementedException(); } + public static bool IsAsyncMarker(UInt32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glLightEnviSGIX")] - public static void LightEnv(OpenTK.Graphics.OpenGL.LightEnvParameterSgix pname, Int32 param) { throw new NotImplementedException(); } + public static void LightEnv(OpenTK.Graphics.OpenGL.LightEnvParameterSgix pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_fragment_lighting] /// /// [Obsolete("Use LightEnvParameterSgix overload instead")] [AutoGenerated(Category = "SGIX_fragment_lighting", Version = "", EntryPoint = "glLightEnviSGIX")] - public static void LightEnv(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new NotImplementedException(); } + public static void LightEnv(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139873,7 +139873,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139881,7 +139881,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139889,7 +139889,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] [CLSCompliant(false)] - public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139897,7 +139897,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139905,7 +139905,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] [CLSCompliant(false)] - public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139913,7 +139913,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139921,7 +139921,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139929,7 +139929,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139937,7 +139937,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] [CLSCompliant(false)] - public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139945,7 +139945,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ListParameter(Int32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139953,7 +139953,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] [CLSCompliant(false)] - public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_list_priority] /// @@ -139961,142 +139961,142 @@ namespace OpenTK.Graphics.OpenGL /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_list_priority", Version = "", EntryPoint = "glListParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ListParameter(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glLoadIdentityDeformationMapSGIX")] - public static void LoadIdentityDeformationMap(OpenTK.Graphics.OpenGL.FfdMaskSgix mask) { throw new NotImplementedException(); } + public static void LoadIdentityDeformationMap(OpenTK.Graphics.OpenGL.FfdMaskSgix mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [Obsolete("Use FfdMaskSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glLoadIdentityDeformationMapSGIX")] - public static void LoadIdentityDeformationMap(Int32 mask) { throw new NotImplementedException(); } + public static void LoadIdentityDeformationMap(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_polynomial_ffd] /// [Obsolete("Use FfdMaskSgix overload instead")] [AutoGenerated(Category = "SGIX_polynomial_ffd", Version = "", EntryPoint = "glLoadIdentityDeformationMapSGIX")] [CLSCompliant(false)] - public static void LoadIdentityDeformationMap(UInt32 mask) { throw new NotImplementedException(); } + public static void LoadIdentityDeformationMap(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_pixel_texture] /// [AutoGenerated(Category = "SGIX_pixel_texture", Version = "", EntryPoint = "glPixelTexGenSGIX")] - public static void PixelTexGen(OpenTK.Graphics.OpenGL.SgixPixelTexture mode) { throw new NotImplementedException(); } + public static void PixelTexGen(OpenTK.Graphics.OpenGL.SgixPixelTexture mode) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] [CLSCompliant(false)] - public static Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] out Int32 markerp) { throw new NotImplementedException(); } + public static Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] out Int32 markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] [CLSCompliant(false)] - public static unsafe Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] Int32* markerp) { throw new NotImplementedException(); } + public static unsafe Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] Int32* markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] [CLSCompliant(false)] - public static Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] out UInt32 markerp) { throw new NotImplementedException(); } + public static Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] out UInt32 markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_async] /// [length: 1] [AutoGenerated(Category = "SGIX_async", Version = "", EntryPoint = "glPollAsyncSGIX")] [CLSCompliant(false)] - public static unsafe Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp) { throw new NotImplementedException(); } + public static unsafe Int32 PollAsync([OutAttribute, CountAttribute(Count = 1)] UInt32* markerp) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// [length: 1] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glPollInstrumentsSGIX")] [CLSCompliant(false)] - public static Int32 PollInstruments([OutAttribute, CountAttribute(Count = 1)] out Int32 marker_p) { throw new NotImplementedException(); } + public static Int32 PollInstruments([OutAttribute, CountAttribute(Count = 1)] out Int32 marker_p) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// [length: 1] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glPollInstrumentsSGIX")] [CLSCompliant(false)] - public static unsafe Int32 PollInstruments([OutAttribute, CountAttribute(Count = 1)] Int32* marker_p) { throw new NotImplementedException(); } + public static unsafe Int32 PollInstruments([OutAttribute, CountAttribute(Count = 1)] Int32* marker_p) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glReadInstrumentsSGIX")] - public static void ReadInstruments(Int32 marker) { throw new NotImplementedException(); } + public static void ReadInstruments(Int32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_reference_plane] /// [length: 4] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] [CLSCompliant(false)] - public static void ReferencePlane([CountAttribute(Count = 4)] Double[] equation) { throw new NotImplementedException(); } + public static void ReferencePlane([CountAttribute(Count = 4)] Double[] equation) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_reference_plane] /// [length: 4] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] [CLSCompliant(false)] - public static void ReferencePlane([CountAttribute(Count = 4)] ref Double equation) { throw new NotImplementedException(); } + public static void ReferencePlane([CountAttribute(Count = 4)] ref Double equation) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_reference_plane] /// [length: 4] [AutoGenerated(Category = "SGIX_reference_plane", Version = "", EntryPoint = "glReferencePlaneSGIX")] [CLSCompliant(false)] - public static unsafe void ReferencePlane([CountAttribute(Count = 4)] Double* equation) { throw new NotImplementedException(); } + public static unsafe void ReferencePlane([CountAttribute(Count = 4)] Double* equation) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterfSGIX")] - public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Single param) { throw new NotImplementedException(); } + public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterfvSGIX")] [CLSCompliant(false)] - public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterfvSGIX")] [CLSCompliant(false)] - public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameteriSGIX")] - public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Int32 param) { throw new NotImplementedException(); } + public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterivSGIX")] [CLSCompliant(false)] - public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_sprite] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "SGIX_sprite", Version = "", EntryPoint = "glSpriteParameterivSGIX")] [CLSCompliant(false)] - public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void SpriteParameter(OpenTK.Graphics.OpenGL.SgixSprite pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glStartInstrumentsSGIX")] - public static void StartInstruments() { throw new NotImplementedException(); } + public static void StartInstruments() { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_instruments] /// [AutoGenerated(Category = "SGIX_instruments", Version = "", EntryPoint = "glStopInstrumentsSGIX")] - public static void StopInstruments(Int32 marker) { throw new NotImplementedException(); } + public static void StopInstruments(Int32 marker) { throw new BindingsNotRewrittenException(); } /// [requires: SGIX_tag_sample_buffer] [AutoGenerated(Category = "SGIX_tag_sample_buffer", Version = "", EntryPoint = "glTagSampleBufferSGIX")] - public static void TagSampleBuffer() { throw new NotImplementedException(); } + public static void TagSampleBuffer() { throw new BindingsNotRewrittenException(); } } @@ -140110,28 +140110,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fSUN")] - public static void Color3fVertex3(Single r, Single g, Single b, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Color3fVertex3(Single r, Single g, Single b, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Color3fVertex3([CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Color3fVertex3([CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Color3fVertex3([CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Color3fVertex3([CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void Color3fVertex3([CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color3fVertex3([CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140145,7 +140145,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fSUN")] - public static void Color4fNormal3fVertex3(Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Color4fNormal3fVertex3(Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -140153,7 +140153,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Color4fNormal3fVertex3([CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Color4fNormal3fVertex3([CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -140161,7 +140161,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Color4fNormal3fVertex3([CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Color4fNormal3fVertex3([CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -140169,7 +140169,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void Color4fNormal3fVertex3([CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color4fNormal3fVertex3([CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140179,28 +140179,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fSUN")] - public static void Color4ubVertex2(Byte r, Byte g, Byte b, Byte a, Single x, Single y) { throw new NotImplementedException(); } + public static void Color4ubVertex2(Byte r, Byte g, Byte b, Byte a, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 2] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] [CLSCompliant(false)] - public static void Color4ubVertex2([CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void Color4ubVertex2([CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 2] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] [CLSCompliant(false)] - public static void Color4ubVertex2([CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void Color4ubVertex2([CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 2] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex2fvSUN")] [CLSCompliant(false)] - public static unsafe void Color4ubVertex2([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color4ubVertex2([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140211,28 +140211,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fSUN")] - public static void Color4ubVertex3(Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Color4ubVertex3(Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void Color4ubVertex3([CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Color4ubVertex3([CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void Color4ubVertex3([CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Color4ubVertex3([CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void Color4ubVertex3([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Color4ubVertex3([CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_mesh_array] /// @@ -140241,7 +140241,7 @@ namespace OpenTK.Graphics.OpenGL /// [Obsolete("Use PrimitiveType overload instead")] [AutoGenerated(Category = "SUN_mesh_array", Version = "", EntryPoint = "glDrawMeshArraysSUN")] - public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 width) { throw new NotImplementedException(); } + public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_mesh_array] /// @@ -140249,56 +140249,56 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_mesh_array", Version = "", EntryPoint = "glDrawMeshArraysSUN")] - public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 width) { throw new NotImplementedException(); } + public static void DrawMeshArrays(OpenTK.Graphics.OpenGL.PrimitiveType mode, Int32 first, Int32 count, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorbSUN")] [CLSCompliant(false)] - public static void GlobalAlphaFactor(SByte factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(SByte factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactordSUN")] - public static void GlobalAlphaFactor(Double factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Double factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorfSUN")] - public static void GlobalAlphaFactor(Single factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Single factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactoriSUN")] - public static void GlobalAlphaFactor(Int32 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Int32 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorsSUN")] - public static void GlobalAlphaFactors(Int16 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactors(Int16 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorubSUN")] - public static void GlobalAlphaFactor(Byte factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Byte factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactoruiSUN")] [CLSCompliant(false)] - public static void GlobalAlphaFactor(UInt32 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(UInt32 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorusSUN")] [CLSCompliant(false)] - public static void GlobalAlphaFactor(Int16 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(Int16 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_global_alpha] /// [AutoGenerated(Category = "SUN_global_alpha", Version = "", EntryPoint = "glGlobalAlphaFactorusSUN")] [CLSCompliant(false)] - public static void GlobalAlphaFactor(UInt16 factor) { throw new NotImplementedException(); } + public static void GlobalAlphaFactor(UInt16 factor) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140308,35 +140308,35 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fSUN")] - public static void Normal3fVertex3(Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void Normal3fVertex3(Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Normal3fVertex3([CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void Normal3fVertex3([CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void Normal3fVertex3([CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void Normal3fVertex3([CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 3] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void Normal3fVertex3([CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void Normal3fVertex3([CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// /// /// [length: COMPSIZE(type,stride)] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodePointerSUN")] - public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [CountAttribute(Computed = "type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// @@ -140346,7 +140346,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// @@ -140356,7 +140356,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// @@ -140366,7 +140366,7 @@ namespace OpenTK.Graphics.OpenGL [CLSCompliant(false)] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// @@ -140375,24 +140375,24 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodePointerSUN")] public static void ReplacementCodePointer(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "type,stride")] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeubSUN")] - public static void ReplacementCode(Byte code) { throw new NotImplementedException(); } + public static void ReplacementCode(Byte code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeubvSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] Byte[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] Byte[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeubvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Byte* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Byte* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140404,7 +140404,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiColor3fVertex3(Int32 rc, Single r, Single g, Single b, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140416,7 +140416,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiColor3fVertex3(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140424,7 +140424,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140432,7 +140432,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140440,7 +140440,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140448,7 +140448,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140456,7 +140456,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140464,7 +140464,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140480,7 +140480,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140496,7 +140496,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140505,7 +140505,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140514,7 +140514,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140523,7 +140523,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140532,7 +140532,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140541,7 +140541,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140550,7 +140550,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor4fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140563,7 +140563,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiColor4ubVertex3(Int32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140576,7 +140576,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiColor4ubVertex3(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140584,7 +140584,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140592,7 +140592,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140600,7 +140600,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140608,7 +140608,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140616,7 +140616,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140624,7 +140624,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiColor4ubVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140636,7 +140636,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiNormal3fVertex3(Int32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140648,7 +140648,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiNormal3fVertex3(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140656,7 +140656,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140664,7 +140664,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140672,7 +140672,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140680,7 +140680,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140688,7 +140688,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140696,19 +140696,19 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuiSUN")] [CLSCompliant(false)] - public static void ReplacementCode(Int32 code) { throw new NotImplementedException(); } + public static void ReplacementCode(Int32 code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuiSUN")] [CLSCompliant(false)] - public static void ReplacementCode(UInt32 code) { throw new NotImplementedException(); } + public static void ReplacementCode(UInt32 code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140726,7 +140726,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140744,7 +140744,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140754,7 +140754,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140764,7 +140764,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140774,7 +140774,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140784,7 +140784,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140794,7 +140794,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140804,7 +140804,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140818,7 +140818,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140832,7 +140832,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140841,7 +140841,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140850,7 +140850,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140859,7 +140859,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140868,7 +140868,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140877,7 +140877,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140886,7 +140886,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140897,7 +140897,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiTexCoord2fVertex3(Int32 rc, Single s, Single t, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140908,7 +140908,7 @@ namespace OpenTK.Graphics.OpenGL /// [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(); } + public static void ReplacementCodeuiTexCoord2fVertex3(UInt32 rc, Single s, Single t, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140916,7 +140916,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140924,7 +140924,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140932,7 +140932,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140940,7 +140940,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140948,7 +140948,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] @@ -140956,7 +140956,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiTexCoord2fVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140965,7 +140965,7 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3(Int32 rc, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3(Int32 rc, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -140974,109 +140974,109 @@ namespace OpenTK.Graphics.OpenGL /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3(UInt32 rc, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3(UInt32 rc, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref Int32 rc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] Int32* rc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] ref UInt32 rc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 1] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ReplacementCodeuiVertex3([CountAttribute(Count = 1)] UInt32* rc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] Int32[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] Int32[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Int32* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Int32* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] UInt32[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] UInt32[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeuivSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] UInt32* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] UInt32* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusSUN")] [CLSCompliant(false)] - public static void ReplacementCode(Int16 code) { throw new NotImplementedException(); } + public static void ReplacementCode(Int16 code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusSUN")] [CLSCompliant(false)] - public static void ReplacementCode(UInt16 code) { throw new NotImplementedException(); } + public static void ReplacementCode(UInt16 code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] Int16[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] Int16[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Int16* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] Int16* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] [CLSCompliant(false)] - public static void ReplacementCode([CountAttribute(Computed = "")] UInt16[] code) { throw new NotImplementedException(); } + public static void ReplacementCode([CountAttribute(Computed = "")] UInt16[] code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_triangle_list] /// [length: COMPSIZE()] [AutoGenerated(Category = "SUN_triangle_list", Version = "", EntryPoint = "glReplacementCodeusvSUN")] [CLSCompliant(false)] - public static unsafe void ReplacementCode([CountAttribute(Computed = "")] UInt16* code) { throw new NotImplementedException(); } + public static unsafe void ReplacementCode([CountAttribute(Computed = "")] UInt16* code) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141088,7 +141088,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fSUN")] - public static void TexCoord2fColor3fVertex3(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fColor3fVertex3(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141096,7 +141096,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141104,7 +141104,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141112,7 +141112,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fColor3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141128,7 +141128,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fSUN")] - public static void TexCoord2fColor4fNormal3fVertex3(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fColor4fNormal3fVertex3(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141137,7 +141137,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141146,7 +141146,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141155,7 +141155,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fColor4fNormal3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141168,7 +141168,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fSUN")] - public static void TexCoord2fColor4ubVertex3(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fColor4ubVertex3(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141176,7 +141176,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 4)] Byte[] c, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141184,7 +141184,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 4)] ref Byte c, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141192,7 +141192,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fColor4ubVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 4)] Byte* c, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141204,7 +141204,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fSUN")] - public static void TexCoord2fNormal3fVertex3(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fNormal3fVertex3(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141212,7 +141212,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141220,7 +141220,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] @@ -141228,7 +141228,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fNormal3fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141237,28 +141237,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fSUN")] - public static void TexCoord2fVertex3(Single s, Single t, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void TexCoord2fVertex3(Single s, Single t, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord2fVertex3([CountAttribute(Count = 2)] Single[] tc, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static void TexCoord2fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord2fVertex3([CountAttribute(Count = 2)] ref Single tc, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 2] /// [length: 3] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord2fVertex3fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord2fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord2fVertex3([CountAttribute(Count = 2)] Single* tc, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141277,7 +141277,7 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fSUN")] - public static void TexCoord4fColor4fNormal3fVertex4(Single s, Single t, Single p, Single q, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void TexCoord4fColor4fNormal3fVertex4(Single s, Single t, Single p, Single q, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -141286,7 +141286,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] [CLSCompliant(false)] - public static void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] Single[] tc, [CountAttribute(Count = 4)] Single[] c, [CountAttribute(Count = 3)] Single[] n, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -141295,7 +141295,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] [CLSCompliant(false)] - public static void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] ref Single tc, [CountAttribute(Count = 4)] ref Single c, [CountAttribute(Count = 3)] ref Single n, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] @@ -141304,7 +141304,7 @@ namespace OpenTK.Graphics.OpenGL /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4fColor4fNormal3fVertex4([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* c, [CountAttribute(Count = 3)] Single* n, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// @@ -141316,28 +141316,28 @@ namespace OpenTK.Graphics.OpenGL /// /// [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fSUN")] - public static void TexCoord4fVertex4(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void TexCoord4fVertex4(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] [CLSCompliant(false)] - public static void TexCoord4fVertex4([CountAttribute(Count = 4)] Single[] tc, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void TexCoord4fVertex4([CountAttribute(Count = 4)] Single[] tc, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] [CLSCompliant(false)] - public static void TexCoord4fVertex4([CountAttribute(Count = 4)] ref Single tc, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void TexCoord4fVertex4([CountAttribute(Count = 4)] ref Single tc, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: SUN_vertex] /// [length: 4] /// [length: 4] [AutoGenerated(Category = "SUN_vertex", Version = "", EntryPoint = "glTexCoord4fVertex4fvSUN")] [CLSCompliant(false)] - public static unsafe void TexCoord4fVertex4([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void TexCoord4fVertex4([CountAttribute(Count = 4)] Single* tc, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } } @@ -141345,7 +141345,7 @@ namespace OpenTK.Graphics.OpenGL { /// [requires: SUNX_constant_data] [AutoGenerated(Category = "SUNX_constant_data", Version = "", EntryPoint = "glFinishTextureSUNX")] - public static void FinishTexture() { throw new NotImplementedException(); } + public static void FinishTexture() { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Graphics/OpenGL/GLObsolete.cs b/src/OpenTK/Graphics/OpenGL/GLObsolete.cs index 13ccbe95..1159240e 100644 --- a/src/OpenTK/Graphics/OpenGL/GLObsolete.cs +++ b/src/OpenTK/Graphics/OpenGL/GLObsolete.cs @@ -60,7 +60,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [Obsolete("Use GetAttachedShaders out/array overload instead")] public static - unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32[] obj) { throw new NotImplementedException(); } + unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32[] obj) { throw new BindingsNotRewrittenException(); } /// @@ -90,7 +90,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "Version20", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [Obsolete("Use GetAttachedShaders out/array overload instead")] public static - unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32[] obj) { throw new NotImplementedException(); } + unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32[] obj) { throw new BindingsNotRewrittenException(); } /// @@ -131,7 +131,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -171,7 +171,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -212,7 +212,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -252,7 +252,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetSeparableFilter overload instead")] 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] ref T5 span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -294,7 +294,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -336,7 +336,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -378,7 +378,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -420,7 +420,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -463,7 +463,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -506,7 +506,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -548,14 +548,14 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget 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 where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ArbSync", Version = "1.2", EntryPoint = "glGetSynciv")] [Obsolete("Use out/array overload instead")] public static - unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } + unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } /// @@ -606,7 +606,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -657,7 +657,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -708,7 +708,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -758,7 +758,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use overload with equal array dimensions instead")] 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] ref T7 column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -810,7 +810,7 @@ namespace OpenTK.Graphics.OpenGL 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 { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -862,7 +862,7 @@ namespace OpenTK.Graphics.OpenGL 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 { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -914,7 +914,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } partial class Amd { @@ -922,76 +922,76 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] Int32[] data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] Int32[] data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCountersAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] Int32[] counters) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] Int32[] counters) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorCountersAMD")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32[] counters) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32[] counters) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - void GetPerfMonitorGroup([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out Int32 groups) { throw new NotImplementedException(); } + void GetPerfMonitorGroup([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out Int32 groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - void GetPerfMonitorGroup([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out UInt32 groups) { throw new NotImplementedException(); } + void GetPerfMonitorGroup([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out UInt32 groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32[] groups) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32[] groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32* groups) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32* groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32[] groups) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32[] groups) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AmdPerformanceMonitor", Version = "1.2", EntryPoint = "glGetPerfMonitorGroupsAMD")] [Obsolete("Use GetPerfMonitorGroups instead")] public static - unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups) { throw new NotImplementedException(); } + unsafe void GetPerfMonitorGroup([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups) { throw new BindingsNotRewrittenException(); } } partial class Arb @@ -1000,14 +1000,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32[] obj) { throw new NotImplementedException(); } + unsafe void GetAttachedObjects(Int32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] Int32[] obj) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ArbShaderObjects", Version = "1.2", EntryPoint = "glGetAttachedObjectsARB")] [Obsolete("Use ref/array overloads instead")] public static - unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32[] obj) { throw new NotImplementedException(); } + unsafe void GetAttachedObjects(UInt32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32[] obj) { throw new BindingsNotRewrittenException(); } } partial class Ati @@ -1015,14 +1015,14 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glPassTexCoordATI")] [Obsolete("Use PassTexCoord instead")] public static - void PassTexCoor(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } + void PassTexCoor(Int32 dst, Int32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "AtiFragmentShader", Version = "1.2", EntryPoint = "glPassTexCoordATI")] [Obsolete("Use PassTexCoord instead")] public static - void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new NotImplementedException(); } + void PassTexCoor(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle) { throw new BindingsNotRewrittenException(); } } partial class Ext @@ -1030,81 +1030,81 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetQueryObjecti64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjecti64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetQueryObjecti64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetQueryObjectui64(Int32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "ExtTimerQuery", Version = "1.5", EntryPoint = "glGetQueryObjectui64vEXT")] [Obsolete("Use GetQueryObject overload instead")] public static - unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + unsafe void GetQueryObjectui64(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// @@ -1143,7 +1143,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")] [Obsolete("Use GetSeparableFilter overloads instead")] 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] IntPtr span) { throw new NotImplementedException(); } + 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] IntPtr span) { throw new BindingsNotRewrittenException(); } /// @@ -1185,7 +1185,7 @@ namespace OpenTK.Graphics.OpenGL void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, ref T4 row, ref T5 column, ref T6 span) where T4 : struct where T5 : struct - where T6 : struct { throw new NotImplementedException(); } + where T6 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1228,7 +1228,7 @@ namespace OpenTK.Graphics.OpenGL 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 where T5 : struct - where T6 : struct { throw new NotImplementedException(); } + where T6 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1271,7 +1271,7 @@ namespace OpenTK.Graphics.OpenGL 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 where T5 : struct - where T6 : struct { throw new NotImplementedException(); } + where T6 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1314,7 +1314,7 @@ namespace OpenTK.Graphics.OpenGL 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 where T5 : struct - where T6 : struct { throw new NotImplementedException(); } + where T6 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1355,7 +1355,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1396,7 +1396,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1437,7 +1437,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1477,7 +1477,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use GetSeparableFilter overloads instead")] 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] ref T5 span) - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1519,7 +1519,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1561,7 +1561,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1603,7 +1603,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1644,7 +1644,7 @@ namespace OpenTK.Graphics.OpenGL public static void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution 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 - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1687,7 +1687,7 @@ namespace OpenTK.Graphics.OpenGL 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 where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1730,7 +1730,7 @@ namespace OpenTK.Graphics.OpenGL 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 where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1773,7 +1773,7 @@ namespace OpenTK.Graphics.OpenGL 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 where T4 : struct - where T5 : struct { throw new NotImplementedException(); } + where T5 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1822,7 +1822,7 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")] [Obsolete("Use SeparableFilter2D overloads instead")] 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] IntPtr column) { throw new NotImplementedException(); } + 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] IntPtr column) { throw new BindingsNotRewrittenException(); } /// @@ -1873,7 +1873,7 @@ namespace OpenTK.Graphics.OpenGL 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] ref T6 row, [InAttribute, OutAttribute] ref T7 column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1925,7 +1925,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -1977,7 +1977,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2029,7 +2029,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2080,7 +2080,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2131,7 +2131,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2182,7 +2182,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2232,7 +2232,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use SeparableFilter2D overloads instead")] 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] ref T7 column) - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2284,7 +2284,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } /// @@ -2335,7 +2335,7 @@ namespace OpenTK.Graphics.OpenGL 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 - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } } /// @@ -2386,7 +2386,7 @@ namespace OpenTK.Graphics.OpenGL 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] ref T6 row, [InAttribute, OutAttribute] T7[,,] column) where T6 : struct - where T7 : struct { throw new NotImplementedException(); } + where T7 : struct { throw new BindingsNotRewrittenException(); } partial class Ibm @@ -2394,26 +2394,26 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] first, Int32[] count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - void MultiModeDrawArrays(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + void MultiModeDrawArrays(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 first, ref Int32 count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawArraysIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - unsafe void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + unsafe void MultiModeDrawArrays(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2421,7 +2421,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2429,7 +2429,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2437,20 +2437,20 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] public static void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode[] mode, Int32[] count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + void MultiModeDrawElements(ref OpenTK.Graphics.OpenGL.BeginMode mode, ref Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2458,7 +2458,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2466,7 +2466,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2474,7 +2474,7 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] @@ -2482,14 +2482,14 @@ namespace OpenTK.Graphics.OpenGL [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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "IbmMultimodeDrawArrays", Version = "1.1", EntryPoint = "glMultiModeDrawElementsIBM")] [Obsolete("Use PrimitiveType overload instead")] public static - unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new NotImplementedException(); } + unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] @@ -2497,7 +2497,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] public static unsafe 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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] @@ -2505,7 +2505,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] public static unsafe 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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] @@ -2513,7 +2513,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] public static unsafe 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(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] @@ -2521,7 +2521,7 @@ namespace OpenTK.Graphics.OpenGL [Obsolete("Use PrimitiveType overload instead")] public static unsafe void MultiModeDrawElements(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount, Int32 modestride) - where T3 : struct { throw new NotImplementedException(); } + where T3 : struct { throw new BindingsNotRewrittenException(); } } partial class NV @@ -2529,217 +2529,217 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - void DeleteTransformFeedback(Int32 n, Int32[] ids) { throw new NotImplementedException(); } + void DeleteTransformFeedback(Int32 n, Int32[] ids) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - void DeleteTransformFeedback(Int32 n, ref Int32 ids) { throw new NotImplementedException(); } + void DeleteTransformFeedback(Int32 n, ref Int32 ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - unsafe void DeleteTransformFeedback(Int32 n, Int32* ids) { throw new NotImplementedException(); } + unsafe void DeleteTransformFeedback(Int32 n, Int32* ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - void DeleteTransformFeedback(Int32 n, UInt32[] ids) { throw new NotImplementedException(); } + void DeleteTransformFeedback(Int32 n, UInt32[] ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - void DeleteTransformFeedback(Int32 n, ref UInt32 ids) { throw new NotImplementedException(); } + void DeleteTransformFeedback(Int32 n, ref UInt32 ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glDeleteTransformFeedbacksNV")] [Obsolete("Use DeleteTransformFeedbacks overload instead")] public static - unsafe void DeleteTransformFeedback(Int32 n, UInt32* ids) { throw new NotImplementedException(); } + unsafe void DeleteTransformFeedback(Int32 n, UInt32* ids) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - void GenTransformFeedback(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + void GenTransformFeedback(Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - void GenTransformFeedback(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + void GenTransformFeedback(Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - unsafe void GenTransformFeedback(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + unsafe void GenTransformFeedback(Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - void GenTransformFeedback(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + void GenTransformFeedback(Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - void GenTransformFeedback(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + void GenTransformFeedback(Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvTransformFeedback2", Version = "", EntryPoint = "glGenTransformFeedbacksNV")] [Obsolete("Use GenTransformFeedbacks overload instead")] public static - unsafe void GenTransformFeedback(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + unsafe void GenTransformFeedback(Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterdvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + unsafe void GetProgramNamedParameter(Int32 id, Int32 len, Byte* name, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glGetProgramNamedParameterfvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + unsafe void GetProgramNamedParameter(UInt32 id, Int32 len, Byte* name, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - unsafe void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetVideoi64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoi64vNV")] [Obsolete("Use GetVideo overload instead")] public static - unsafe void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetVideoi64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - unsafe void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + unsafe void GetVideoui64(Int32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvPresentVideo", Version = "1.2", EntryPoint = "glGetVideoui64vNV")] [Obsolete("Use GetVideo overload instead")] public static - unsafe void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + unsafe void GetVideoui64(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double[] v) { throw new NotImplementedException(); } + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Double[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4dvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double[] v) { throw new NotImplementedException(); } + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Double[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single[] v) { throw new NotImplementedException(); } + unsafe void ProgramNamedParameter4(Int32 id, Int32 len, Byte* name, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "NvFragmentProgram", Version = "1.2", EntryPoint = "glProgramNamedParameter4fvNV")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single[] v) { throw new NotImplementedException(); } + unsafe void ProgramNamedParameter4(UInt32 id, Int32 len, Byte* name, Single[] v) { throw new BindingsNotRewrittenException(); } } partial class Sun @@ -2748,112 +2748,112 @@ namespace OpenTK.Graphics.OpenGL [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single[] c, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor3fVertex3(Int32* rc, Single[] c, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single[] c, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor3fVertex3(UInt32* rc, Single[] c, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(Int32* rc, Single[] c, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor4fNormal3fVertex3(UInt32* rc, Single[] c, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte[] c, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor4ubVertex3(Int32* rc, Byte[] c, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte[] c, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiColor4ubVertex3(UInt32* rc, Byte[] c, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiNormal3fVertex3(Int32* rc, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiNormal3fVertex3(UInt32* rc, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(Int32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] c, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(Int32* rc, Single[] tc, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] n, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3(UInt32* rc, Single[] tc, Single[] n, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single[] tc, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fVertex3(Int32* rc, Single[] tc, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single[] tc, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiTexCoord2fVertex3(UInt32* rc, Single[] tc, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiVertex3(Int32* rc, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiVertex3(Int32* rc, Single[] v) { throw new BindingsNotRewrittenException(); } [System.CLSCompliant(false)] [AutoGenerated(Category = "SunVertex", Version = "1.1", EntryPoint = "glReplacementCodeuiVertex3fvSUN")] [Obsolete("Use ref/array overload instead")] public static - unsafe void ReplacementCodeuiVertex3(UInt32* rc, Single[] v) { throw new NotImplementedException(); } + unsafe void ReplacementCodeuiVertex3(UInt32* rc, Single[] v) { throw new BindingsNotRewrittenException(); } } } } diff --git a/src/OpenTK/Graphics/OpenGL4/GL4.cs b/src/OpenTK/Graphics/OpenGL4/GL4.cs index 0e0ac94d..1dfba67d 100644 --- a/src/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/src/OpenTK/Graphics/OpenGL4/GL4.cs @@ -2773,126 +2773,126 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")] [CLSCompliant(false)] - public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void BeginPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitor([CountAttribute(Parameter = "n")] UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new NotImplementedException(); } + public static void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void DeletePerfMonitors(Int32 n, [CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(Int32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")] [CLSCompliant(false)] - public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); } + public static void EndPerfMonitor(UInt32 monitor) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static Int32 GenPerfMonitor() { throw new NotImplementedException(); } + public static Int32 GenPerfMonitor() { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new NotImplementedException(); } + public static void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// /// [length: n] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")] [CLSCompliant(false)] - public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new NotImplementedException(); } + public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* monitors) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2902,7 +2902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2912,7 +2912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out Int32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2922,7 +2922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] Int32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2932,7 +2932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32[] data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2942,7 +2942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] out UInt32 data, [OutAttribute, CountAttribute(Count = 1)] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2952,7 +2952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.OpenGL4.All pname, Int32 dataSize, [OutAttribute, CountAttribute(Parameter = "dataSize")] UInt32* data, [OutAttribute, CountAttribute(Count = 1)] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2961,7 +2961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2972,7 +2972,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2983,7 +2983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -2994,7 +2994,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3005,7 +3005,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3014,7 +3014,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3025,7 +3025,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3036,7 +3036,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3047,7 +3047,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3058,7 +3058,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "pname")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3068,7 +3068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3078,7 +3078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out Int32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3088,7 +3088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] Int32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3098,7 +3098,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32[] counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3108,7 +3108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] out Int32 numCounters, [OutAttribute, CountAttribute(Count = 1)] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] out UInt32 counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3118,7 +3118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: counterSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute, CountAttribute(Count = 1)] Int32* numCounters, [OutAttribute, CountAttribute(Count = 1)] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute, CountAttribute(Parameter = "counterSize")] UInt32* counters) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3128,7 +3128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3138,7 +3138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3148,7 +3148,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3158,7 +3158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String counterString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3166,7 +3166,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3174,7 +3174,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out Int32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3182,7 +3182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32[] groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3190,7 +3190,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] out Int32 numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] out UInt32 groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3198,7 +3198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] Int32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// [length: 1] @@ -3206,7 +3206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: groupsSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroups([OutAttribute, CountAttribute(Count = 1)] Int32* numGroups, Int32 groupsSize, [OutAttribute, CountAttribute(Parameter = "groupsSize")] UInt32* groups) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3215,7 +3215,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3224,7 +3224,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3233,7 +3233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3242,7 +3242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")] [CLSCompliant(false)] - public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new NotImplementedException(); } + public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String groupString) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3252,7 +3252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3262,7 +3262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out Int32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3272,7 +3272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] Int32* counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3282,7 +3282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32[] counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3292,7 +3292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new NotImplementedException(); } + public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] out UInt32 counterList) { throw new BindingsNotRewrittenException(); } /// [requires: AMD_performance_monitor] /// @@ -3302,7 +3302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numCounters] [AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")] [CLSCompliant(false)] - public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new NotImplementedException(); } + public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute, CountAttribute(Parameter = "numCounters")] UInt32* counterList) { throw new BindingsNotRewrittenException(); } } @@ -3319,7 +3319,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(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -3332,7 +3332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -3348,7 +3348,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(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Set the RGB blend equation and the alpha blend equation separately @@ -3364,7 +3364,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.All modeRGB, OpenTK.Graphics.OpenGL4.All modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -3380,7 +3380,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(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic @@ -3396,7 +3396,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.All src, OpenTK.Graphics.OpenGL4.All dst) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3418,7 +3418,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_draw_buffers_blend] /// Specify pixel arithmetic for RGB and alpha components separately @@ -3440,7 +3440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -3448,7 +3448,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glBufferPageCommitmentARB")] - public static void BufferPageCommitment(OpenTK.Graphics.OpenGL4.All target, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void BufferPageCommitment(OpenTK.Graphics.OpenGL4.All target, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -3456,7 +3456,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glBufferPageCommitmentARB")] - public static void BufferPageCommitment(OpenTK.Graphics.OpenGL4.All target, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void BufferPageCommitment(OpenTK.Graphics.OpenGL4.All target, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3465,7 +3465,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3474,7 +3474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3483,7 +3483,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void CompileShaderInclude(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3492,7 +3492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3501,7 +3501,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -3510,7 +3510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glCompileShaderIncludeARB")] [CLSCompliant(false)] - public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void CompileShaderInclude(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] path, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3518,7 +3518,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3526,7 +3526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr[] context, [OutAttribute] IntPtr[] @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3534,7 +3534,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3542,7 +3542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static IntPtr CreateSyncFromCLevent([OutAttribute] out IntPtr context, [OutAttribute] out IntPtr @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3550,7 +3550,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_cl_event] /// @@ -3558,7 +3558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static unsafe IntPtr CreateSyncFromCLevent([OutAttribute] IntPtr* context, [OutAttribute] IntPtr* @event, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3570,7 +3570,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] - public static void DebugMessageCallback(DebugProcArb callback, [CountAttribute(Computed = "callback")] IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcArb callback, [CountAttribute(Computed = "callback")] IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3585,7 +3585,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3600,7 +3600,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3615,7 +3615,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Specify a callback to receive debugging messages from the GL @@ -3629,7 +3629,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glDebugMessageCallbackARB")] public static void DebugMessageCallback(DebugProcArb callback, [InAttribute, OutAttribute, CountAttribute(Computed = "callback")] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3654,7 +3654,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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3679,7 +3679,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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3704,7 +3704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3729,7 +3729,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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3754,7 +3754,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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Control the reporting of debug messages in a debug context @@ -3779,7 +3779,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, OpenTK.Graphics.OpenGL4.All severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -3804,7 +3804,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, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, Int32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Inject an application-supplied message into the debug message queue @@ -3829,13 +3829,13 @@ 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, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.All source, OpenTK.Graphics.OpenGL4.All type, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, [CountAttribute(Parameter = "length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// /// [length: namelen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glDeleteNamedStringARB")] - public static void DeleteNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new NotImplementedException(); } + public static void DeleteNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_compute_variable_group_size] /// @@ -3846,7 +3846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_compute_variable_group_size] /// @@ -3857,7 +3857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a range of elements @@ -3875,7 +3875,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedARB")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3896,7 +3896,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3920,7 +3920,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3944,7 +3944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3968,7 +3968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_draw_instanced] /// Draw multiple instances of a set of elements @@ -3991,11 +3991,11 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedARB")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glEvaluateDepthValuesARB")] - public static void EvaluateDepthValues() { throw new NotImplementedException(); } + public static void EvaluateDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4004,7 +4004,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4013,7 +4013,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4022,7 +4022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4031,7 +4031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4040,7 +4040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -4049,7 +4049,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -4068,7 +4068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureARB")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -4087,7 +4087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureARB")] [CLSCompliant(false)] - public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// @@ -4097,7 +4097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureFaceARB")] [CLSCompliant(false)] - public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new NotImplementedException(); } + public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// @@ -4107,7 +4107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureFaceARB")] [CLSCompliant(false)] - public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new NotImplementedException(); } + public static void FramebufferTextureFace(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a single layer of a texture to a framebuffer @@ -4129,7 +4129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureLayerARB")] [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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Attach a single layer of a texture to a framebuffer @@ -4151,7 +4151,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glFramebufferTextureLayerARB")] [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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4182,7 +4182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4213,7 +4213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4244,7 +4244,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4275,7 +4275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4306,7 +4306,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_debug_output] /// Retrieve messages from the debug message log @@ -4337,11 +4337,11 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_debug_output", Version = "", EntryPoint = "glGetDebugMessageLogARB")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusARB")] - public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -4351,7 +4351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -4361,7 +4361,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4371,7 +4371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4381,7 +4381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringARB")] [CLSCompliant(false)] - public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new NotImplementedException(); } + public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* stringlen, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4390,7 +4390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4399,7 +4399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -4408,7 +4408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glGetNamedStringivARB")] [CLSCompliant(false)] - public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4417,7 +4417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new NotImplementedException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4429,7 +4429,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T4[] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4441,7 +4441,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T4[,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4453,7 +4453,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T4[,,] table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4464,7 +4464,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnColorTableARB")] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4472,7 +4472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new NotImplementedException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4483,7 +4483,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4494,7 +4494,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4505,7 +4505,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4515,7 +4515,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnCompressedTexImageARB")] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4524,7 +4524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new NotImplementedException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4536,7 +4536,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T4[] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4548,7 +4548,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T4[,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4560,7 +4560,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T4[,,] image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4571,7 +4571,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnConvolutionFilterARB")] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4581,7 +4581,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new NotImplementedException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4594,7 +4594,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4607,7 +4607,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4620,7 +4620,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4632,7 +4632,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnHistogramARB")] 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, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4641,7 +4641,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4650,7 +4650,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] out Double v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4659,7 +4659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Double* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4668,7 +4668,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4677,7 +4677,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] out Single v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4686,7 +4686,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4695,7 +4695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4704,7 +4704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4713,7 +4713,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4723,7 +4723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new NotImplementedException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4736,7 +4736,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4749,7 +4749,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4762,7 +4762,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[,,] values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4774,7 +4774,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnMinmaxARB")] 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, CountAttribute(Parameter = "bufSize")] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4782,7 +4782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4790,7 +4790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4798,7 +4798,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapfvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4806,7 +4806,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4814,7 +4814,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4822,7 +4822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4830,7 +4830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4838,7 +4838,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4846,7 +4846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapuivARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4854,7 +4854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4862,7 +4862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4870,7 +4870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4878,7 +4878,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4886,7 +4886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4894,33 +4894,33 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPixelMapusvARB")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetnPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte[] pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte[] pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Byte pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Byte pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnPolygonStippleARB")] [CLSCompliant(false)] - public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern) { throw new NotImplementedException(); } + public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Byte* pattern) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4932,7 +4932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: columnBufSize] /// [length: 0] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnSeparableFilterARB")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new NotImplementedException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute, CountAttribute(Parameter = "rowBufSize")] IntPtr row, Int32 columnBufSize, [OutAttribute, CountAttribute(Parameter = "columnBufSize")] IntPtr column, [OutAttribute, CountAttribute(Count = 0)] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4949,7 +4949,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4966,7 +4966,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4983,7 +4983,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -4999,7 +4999,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5009,7 +5009,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new NotImplementedException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5022,7 +5022,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5035,7 +5035,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[,] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5048,7 +5048,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T5[,,] img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5060,7 +5060,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnTexImageARB")] 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, CountAttribute(Parameter = "bufSize")] ref T5 img) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5069,7 +5069,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5078,7 +5078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5087,7 +5087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5096,7 +5096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5105,7 +5105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5114,7 +5114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformdvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5123,7 +5123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5132,7 +5132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5141,7 +5141,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5150,7 +5150,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5159,7 +5159,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5168,7 +5168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformfvARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5177,7 +5177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5186,7 +5186,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5195,7 +5195,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5204,7 +5204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5213,7 +5213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5222,7 +5222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5231,7 +5231,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5240,7 +5240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5249,7 +5249,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5258,7 +5258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5267,7 +5267,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5276,7 +5276,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5285,7 +5285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5294,7 +5294,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// @@ -5303,7 +5303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetnUniformui64vARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5312,7 +5312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5321,7 +5321,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -5330,33 +5330,33 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glGetnUniformuivARB")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleARB")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5372,7 +5372,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5388,7 +5388,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5404,7 +5404,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5420,7 +5420,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5436,7 +5436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5452,7 +5452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformi64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5468,7 +5468,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5484,7 +5484,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Returns the value of a uniform variable @@ -5500,7 +5500,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glGetUniformui64vARB")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5508,7 +5508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5516,7 +5516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5524,7 +5524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5532,7 +5532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5540,7 +5540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -5548,99 +5548,99 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameterArb pname, [OutAttribute] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentARB")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// /// [length: namelen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glIsNamedStringARB")] - public static bool IsNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new NotImplementedException(); } + public static bool IsNamedString(Int32 namelen, [CountAttribute(Parameter = "namelen")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentARB")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentARB")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentARB")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_parallel_shader_compile] /// [AutoGenerated(Category = "ARB_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsARB")] [CLSCompliant(false)] - public static void MaxShaderCompilerThreads(Int32 count) { throw new NotImplementedException(); } + public static void MaxShaderCompilerThreads(Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_parallel_shader_compile] /// [AutoGenerated(Category = "ARB_parallel_shader_compile", Version = "", EntryPoint = "glMaxShaderCompilerThreadsARB")] [CLSCompliant(false)] - public static void MaxShaderCompilerThreads(UInt32 count) { throw new NotImplementedException(); } + public static void MaxShaderCompilerThreads(UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_shading] /// Specifies minimum rate at which sample shaing takes place @@ -5649,7 +5649,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "ARB_sample_shading", Version = "", EntryPoint = "glMinSampleShadingARB")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5658,7 +5658,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawArraysIndirectCountARB")] - public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5670,7 +5670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5682,7 +5682,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5694,7 +5694,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5705,7 +5705,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawArraysIndirectCountARB")] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5715,7 +5715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5728,7 +5728,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5741,7 +5741,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5754,7 +5754,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_indirect_parameters] /// @@ -5766,7 +5766,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_indirect_parameters", Version = "", EntryPoint = "glMultiDrawElementsIndirectCountARB")] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -5775,7 +5775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -5784,7 +5784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -5793,7 +5793,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -5802,7 +5802,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentARB")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5811,7 +5811,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5820,7 +5820,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5829,7 +5829,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5838,7 +5838,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5847,7 +5847,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sample_locations] /// @@ -5856,7 +5856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvARB")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_shading_language_include] /// @@ -5865,7 +5865,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: stringlen] [AutoGenerated(Category = "ARB_shading_language_include", Version = "", EntryPoint = "glNamedStringARB")] - public static void NamedString(OpenTK.Graphics.OpenGL4.All type, Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] String @string) { throw new NotImplementedException(); } + public static void NamedString(OpenTK.Graphics.OpenGL4.All type, Int32 namelen, [CountAttribute(Parameter = "namelen")] String name, Int32 stringlen, [CountAttribute(Parameter = "stringlen")] String @string) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_ES3_2_compatibility] /// @@ -5877,7 +5877,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_ES3_2_compatibility", Version = "", EntryPoint = "glPrimitiveBoundingBoxARB")] - public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new NotImplementedException(); } + public static void PrimitiveBoundingBox(Single minX, Single minY, Single minZ, Single minW, Single maxX, Single maxY, Single maxZ, Single maxW) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Specify a parameter for a program object @@ -5893,7 +5893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glProgramParameteriARB")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_geometry_shader4] /// Specify a parameter for a program object @@ -5909,7 +5909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_geometry_shader4", Version = "", EntryPoint = "glProgramParameteriARB")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5925,7 +5925,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5941,7 +5941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5960,7 +5960,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5979,7 +5979,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -5998,7 +5998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6017,7 +6017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6036,7 +6036,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6055,7 +6055,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6071,7 +6071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6090,7 +6090,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6109,7 +6109,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6128,7 +6128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform1ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6147,7 +6147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6166,7 +6166,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6185,7 +6185,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6204,7 +6204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6223,7 +6223,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6242,7 +6242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6261,7 +6261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6280,7 +6280,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6299,7 +6299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6318,7 +6318,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6337,7 +6337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6356,7 +6356,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform2ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6378,7 +6378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6400,7 +6400,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6419,7 +6419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6438,7 +6438,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6457,7 +6457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6476,7 +6476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6495,7 +6495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6514,7 +6514,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6536,7 +6536,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6555,7 +6555,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6574,7 +6574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6593,7 +6593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform3ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6618,7 +6618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6643,7 +6643,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6662,7 +6662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6681,7 +6681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6700,7 +6700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6719,7 +6719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6738,7 +6738,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6757,7 +6757,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6782,7 +6782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64ARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6801,7 +6801,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6820,7 +6820,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for a specified program object @@ -6839,7 +6839,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glProgramUniform4ui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6847,7 +6847,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6855,7 +6855,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64ARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6864,7 +6864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6873,7 +6873,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6882,7 +6882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6891,7 +6891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6900,7 +6900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -6909,7 +6909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6922,7 +6922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [Obsolete("Use strongly-typed overload instead")] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6938,7 +6938,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6954,7 +6954,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6970,7 +6970,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6985,7 +6985,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] 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, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -6997,7 +6997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -7012,7 +7012,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -7027,7 +7027,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -7042,7 +7042,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_robustness] /// @@ -7056,7 +7056,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_robustness", Version = "", EntryPoint = "glReadnPixelsARB")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7066,7 +7066,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7076,7 +7076,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7086,7 +7086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7096,7 +7096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7106,7 +7106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gl_spirv] /// @@ -7116,7 +7116,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gl_spirv", Version = "", EntryPoint = "glSpecializeShaderARB")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -7132,7 +7132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_texture_buffer_object] /// Attach the storage for a buffer object to the active buffer texture @@ -7148,7 +7148,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_buffer_object", Version = "", EntryPoint = "glTexBufferARB")] [CLSCompliant(false)] - public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_texture] /// @@ -7161,7 +7161,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "ARB_sparse_texture", Version = "", EntryPoint = "glTexPageCommitmentARB")] - public static void TexPageCommitment(OpenTK.Graphics.OpenGL4.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new NotImplementedException(); } + public static void TexPageCommitment(OpenTK.Graphics.OpenGL4.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7173,7 +7173,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64ARB")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7189,7 +7189,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7205,7 +7205,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7221,7 +7221,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7234,7 +7234,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64ARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7250,7 +7250,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7266,7 +7266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7282,7 +7282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform1ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7297,7 +7297,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64ARB")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7313,7 +7313,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7329,7 +7329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7345,7 +7345,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7361,7 +7361,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64ARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7377,7 +7377,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7393,7 +7393,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7409,7 +7409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform2ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7427,7 +7427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64ARB")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7443,7 +7443,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7459,7 +7459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7475,7 +7475,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7494,7 +7494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64ARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7510,7 +7510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7526,7 +7526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7542,7 +7542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform3ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7563,7 +7563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64ARB")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7579,7 +7579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7595,7 +7595,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7611,7 +7611,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4i64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7633,7 +7633,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64ARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7649,7 +7649,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7665,7 +7665,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_gpu_shader_int64] /// Specify the value of a uniform variable for the current program object @@ -7681,21 +7681,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_gpu_shader_int64", Version = "", EntryPoint = "glUniform4ui64vARB")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64ARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7703,7 +7703,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7711,7 +7711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7719,7 +7719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7727,7 +7727,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7735,7 +7735,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// @@ -7743,7 +7743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vARB")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -7756,7 +7756,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] [CLSCompliant(false)] - public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_instanced_arrays] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -7769,49 +7769,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorARB")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribL1(Int32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64ARB")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribL1(Int32 index, Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_bindless_texture] /// /// [AutoGenerated(Category = "ARB_bindless_texture", Version = "", EntryPoint = "glVertexAttribL1ui64vARB")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, UInt64* v) { throw new BindingsNotRewrittenException(); } } @@ -7819,7 +7819,7 @@ namespace OpenTK.Graphics.OpenGL4 { /// [requires: INTEL_framebuffer_CMAA] [AutoGenerated(Category = "INTEL_framebuffer_CMAA", Version = "", EntryPoint = "glApplyFramebufferAttachmentCMAAINTEL")] - public static void ApplyFramebufferAttachment() { throw new NotImplementedException(); } + public static void ApplyFramebufferAttachment() { throw new BindingsNotRewrittenException(); } } @@ -7834,7 +7834,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(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Set the active program object for a program pipeline object @@ -7847,7 +7847,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(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Select active texture unit @@ -7856,7 +7856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of Texturei, where i ranges from zero to the value of MaxCombinedTextureImageUnits minus one. The initial value is Texture0. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glActiveTexture")] - public static void ActiveTexture(OpenTK.Graphics.OpenGL4.TextureUnit texture) { throw new NotImplementedException(); } + public static void ActiveTexture(OpenTK.Graphics.OpenGL4.TextureUnit texture) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Attaches a shader object to a program object @@ -7869,7 +7869,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(); } + public static void AttachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Attaches a shader object to a program object @@ -7882,7 +7882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")] [CLSCompliant(false)] - public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void AttachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start conditional rendering @@ -7895,7 +7895,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(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.ConditionalRenderType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start conditional rendering @@ -7908,7 +7908,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.ConditionalRenderType mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delimit the boundaries of a query object @@ -7921,7 +7921,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(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delimit the boundaries of a query object @@ -7934,7 +7934,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, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Delimit the boundaries of a query object on an indexed target @@ -7950,7 +7950,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(); } + public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Delimit the boundaries of a query object on an indexed target @@ -7966,7 +7966,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, UInt32 index, UInt32 id) { throw new NotImplementedException(); } + public static void BeginQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Start transform feedback operation @@ -7975,7 +7975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the output type of the primitives that will be recorded into the buffer objects that are bound for transform feedback. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBeginTransformFeedback")] - public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType primitiveMode) { throw new NotImplementedException(); } + public static void BeginTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType primitiveMode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Associates a generic vertex attribute index with a named attribute variable @@ -7991,7 +7991,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(); } + public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Associates a generic vertex attribute index with a named attribute variable @@ -8007,7 +8007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Bind a named buffer object @@ -8020,7 +8020,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(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Bind a named buffer object @@ -8033,7 +8033,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -8049,7 +8049,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a buffer object to an indexed buffer target @@ -8065,7 +8065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferBase")] [CLSCompliant(false)] - public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void BindBufferBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -8087,7 +8087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -8109,7 +8109,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", 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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -8131,7 +8131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glBindBufferRange")] [CLSCompliant(false)] - public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// Bind a range within a buffer object to an indexed buffer target @@ -8153,7 +8153,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", 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(); } + public static void BindBufferRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8172,7 +8172,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, [CountAttribute(Parameter = "count")] Int32[] buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8191,7 +8191,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, [CountAttribute(Parameter = "count")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8210,7 +8210,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8229,7 +8229,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, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8248,7 +8248,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, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more buffer objects to a sequence of indexed buffer targets @@ -8267,7 +8267,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void BindBuffersBase(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8288,7 +8288,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [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, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8309,7 +8309,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [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, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8330,7 +8330,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [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, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new NotImplementedException(); } + public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8351,7 +8351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [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, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] IntPtr[] sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8372,7 +8372,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [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, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new NotImplementedException(); } + public static void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref IntPtr sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind ranges of one or more buffer objects to a sequence of indexed buffer targets @@ -8393,7 +8393,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [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, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new NotImplementedException(); } + public static unsafe void BindBuffersRange(OpenTK.Graphics.OpenGL4.BufferRangeTarget target, UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] IntPtr* sizes) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Bind a user-defined varying out variable to a fragment shader color number @@ -8409,7 +8409,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, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(Int32 program, Int32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Bind a user-defined varying out variable to a fragment shader color number @@ -8425,7 +8425,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glBindFragDataLocation")] [CLSCompliant(false)] - public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static void BindFragDataLocation(UInt32 program, UInt32 color, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -8444,7 +8444,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(); } + public static void BindFragDataLocationIndexed(Int32 program, Int32 colorNumber, Int32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Bind a user-defined varying out variable to a fragment shader color number and index @@ -8463,7 +8463,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(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new NotImplementedException(); } + public static void BindFragDataLocationIndexed(UInt32 program, UInt32 colorNumber, UInt32 index, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a framebuffer to a framebuffer target @@ -8476,7 +8476,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(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a framebuffer to a framebuffer target @@ -8489,7 +8489,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, UInt32 framebuffer) { throw new NotImplementedException(); } + public static void BindFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Bind a level of a texture to an image unit @@ -8517,7 +8517,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Bind a level of a texture to an image unit @@ -8545,7 +8545,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(UInt32 unit, UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.TextureAccess access, OpenTK.Graphics.OpenGL4.SizedInternalFormat format) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8561,7 +8561,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, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new NotImplementedException(); } + public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8577,7 +8577,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, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new NotImplementedException(); } + public static void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8593,7 +8593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static unsafe void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void BindImageTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8609,7 +8609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new NotImplementedException(); } + public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8625,7 +8625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named texture images to a sequence of consecutive image units @@ -8641,7 +8641,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindImageTextures")] [CLSCompliant(false)] - public static unsafe void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void BindImageTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind a program pipeline to the current context @@ -8651,7 +8651,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(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind a program pipeline to the current context @@ -8661,7 +8661,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(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a renderbuffer to a renderbuffer target @@ -8674,7 +8674,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(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Bind a renderbuffer to a renderbuffer target @@ -8687,7 +8687,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void BindRenderbuffer(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Bind a named sampler to a texturing target @@ -8700,7 +8700,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(); } + public static void BindSampler(Int32 unit, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Bind a named sampler to a texturing target @@ -8713,7 +8713,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BindSampler(UInt32 unit, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8729,7 +8729,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, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8745,7 +8745,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, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8761,7 +8761,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static unsafe void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void BindSamplers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8777,7 +8777,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8793,7 +8793,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named sampler objects to a sequence of consecutive sampler units @@ -8809,7 +8809,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindSamplers")] [CLSCompliant(false)] - public static unsafe void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void BindSamplers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Bind a named texture to a texturing target @@ -8822,7 +8822,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(); } + public static void BindTexture(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Bind a named texture to a texturing target @@ -8835,7 +8835,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, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTexture(OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8851,7 +8851,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, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new NotImplementedException(); } + public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8867,7 +8867,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, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new NotImplementedException(); } + public static void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8883,7 +8883,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static unsafe void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void BindTextures(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8899,7 +8899,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new NotImplementedException(); } + public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8915,7 +8915,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named textures to a sequence of consecutive texture units @@ -8931,21 +8931,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindTextures")] [CLSCompliant(false)] - public static unsafe void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void BindTextures(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBindTextureUnit")] [CLSCompliant(false)] - public static void BindTextureUnit(Int32 unit, Int32 texture) { throw new NotImplementedException(); } + public static void BindTextureUnit(Int32 unit, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBindTextureUnit")] [CLSCompliant(false)] - public static void BindTextureUnit(UInt32 unit, UInt32 texture) { throw new NotImplementedException(); } + public static void BindTextureUnit(UInt32 unit, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Bind a transform feedback object @@ -8958,7 +8958,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(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget target, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Bind a transform feedback object @@ -8971,7 +8971,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, UInt32 id) { throw new NotImplementedException(); } + public static void BindTransformFeedback(OpenTK.Graphics.OpenGL4.TransformFeedbackTarget target, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Bind a vertex array object @@ -8981,7 +8981,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(); } + public static void BindVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Bind a vertex array object @@ -8991,7 +8991,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(UInt32 array) { throw new NotImplementedException(); } + public static void BindVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Bind a buffer to a vertex buffer bind point @@ -9010,7 +9010,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(); } + public static void BindVertexBuffer(Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Bind a buffer to a vertex buffer bind point @@ -9029,7 +9029,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(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void BindVertexBuffer(UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9051,7 +9051,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, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9073,7 +9073,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, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9095,7 +9095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static unsafe void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new NotImplementedException(); } + public static unsafe void BindVertexBuffers(Int32 first, Int32 count, [CountAttribute(Parameter = "count")] Int32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9117,7 +9117,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] buffers, [CountAttribute(Parameter = "count")] IntPtr[] offsets, [CountAttribute(Parameter = "count")] Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9139,7 +9139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new NotImplementedException(); } + public static void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 buffers, [CountAttribute(Parameter = "count")] ref IntPtr offsets, [CountAttribute(Parameter = "count")] ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_multi_bind|VERSION_4_4] /// Bind one or more named buffer objects to a sequence of consecutive vertex buffer binding points @@ -9161,7 +9161,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_multi_bind|VERSION_4_4", Version = "4.4", EntryPoint = "glBindVertexBuffers")] [CLSCompliant(false)] - public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new NotImplementedException(); } + public static unsafe void BindVertexBuffers(UInt32 first, Int32 count, [CountAttribute(Parameter = "count")] UInt32* buffers, [CountAttribute(Parameter = "count")] IntPtr* offsets, [CountAttribute(Parameter = "count")] Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Set the blend color @@ -9179,7 +9179,7 @@ namespace OpenTK.Graphics.OpenGL4 /// specify the components of BlendColor /// [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendColor")] - public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4 or ARB_imaging|VERSION_1_4] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9188,7 +9188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "ARB_imaging|VERSION_1_4", Version = "1.4", EntryPoint = "glBlendEquation")] - public static void BlendEquation(OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new NotImplementedException(); } + public static void BlendEquation(OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9201,7 +9201,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(); } + public static void BlendEquation(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify the equation used for both the RGB blend equation and the Alpha blend equation @@ -9214,7 +9214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BlendEquation(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -9226,7 +9226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, FuncReverseSubtract, Min, Max. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")] - public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new NotImplementedException(); } + public static void BlendEquationSeparate(OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -9242,7 +9242,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(); } + public static void BlendEquationSeparate(Int32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Set the RGB blend equation and the alpha blend equation separately @@ -9258,7 +9258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BlendEquationSeparate(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL4.BlendEquationMode modeAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify pixel arithmetic @@ -9270,7 +9270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glBlendFunc")] - public static void BlendFunc(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactor) { throw new NotImplementedException(); } + public static void BlendFunc(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -9286,7 +9286,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(); } + public static void BlendFunc(Int32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc src, OpenTK.Graphics.OpenGL4.BlendingFactorDest dst) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic @@ -9302,7 +9302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void BlendFunc(UInt32 buf, OpenTK.Graphics.OpenGL4.BlendingFactorSrc src, OpenTK.Graphics.OpenGL4.BlendingFactorDest dst) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9320,7 +9320,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specified how the alpha source blending factor is computed. The initial value is One. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glBlendFuncSeparate")] - public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); } + public static void BlendFuncSeparate(OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL4.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL4.BlendingFactorDest dfactorAlpha) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9342,7 +9342,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specify pixel arithmetic for RGB and alpha components separately @@ -9364,7 +9364,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Copy a block of pixels from the read framebuffer to the draw framebuffer @@ -9400,7 +9400,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glBlitFramebuffer")] - public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -9417,7 +9417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBlitNamedFramebuffer")] [CLSCompliant(false)] - public static void BlitNamedFramebuffer(Int32 readFramebuffer, Int32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitNamedFramebuffer(Int32 readFramebuffer, Int32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -9434,7 +9434,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glBlitNamedFramebuffer")] [CLSCompliant(false)] - public static void BlitNamedFramebuffer(UInt32 readFramebuffer, UInt32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new NotImplementedException(); } + public static void BlitNamedFramebuffer(UInt32 readFramebuffer, UInt32 drawFramebuffer, Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL4.ClearBufferMask mask, OpenTK.Graphics.OpenGL4.BlitFramebufferFilter filter) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9452,7 +9452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9473,7 +9473,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9494,7 +9494,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9515,7 +9515,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9535,7 +9535,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9553,7 +9553,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StreamRead, StreamCopy, StaticDraw, StaticRead, StaticCopy, DynamicDraw, DynamicRead, or DynamicCopy. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] - public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9574,7 +9574,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9595,7 +9595,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9616,7 +9616,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Creates and initializes a buffer object's data store @@ -9636,7 +9636,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferData")] public static void BufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9654,7 +9654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] - public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9675,7 +9675,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9696,7 +9696,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9717,7 +9717,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9737,7 +9737,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9755,7 +9755,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the intended usage of the buffer's data store. Must be a bitwise combination of the following flags. DynamicStorageBit, MapReadBitMapWriteBit, MapPersistentBit, MapCoherentBit, and ClientStorageBit. /// [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] - public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9776,7 +9776,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9797,7 +9797,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9818,7 +9818,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_buffer_storage|VERSION_4_4] /// Creates and initializes a buffer object's immutable data store @@ -9838,7 +9838,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_buffer_storage|VERSION_4_4", Version = "4.4", EntryPoint = "glBufferStorage")] public static void BufferStorage(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9856,7 +9856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9877,7 +9877,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9898,7 +9898,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9919,7 +9919,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9939,7 +9939,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9957,7 +9957,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the new data that will be copied into the data store. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] - public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9978,7 +9978,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -9999,7 +9999,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -10020,7 +10020,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Updates a subset of a buffer object's data store @@ -10040,7 +10040,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glBufferSubData")] public static void BufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Check the completeness status of a framebuffer @@ -10049,21 +10049,21 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the target of the framebuffer completeness check. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glCheckFramebufferStatus")] - public static OpenTK.Graphics.OpenGL4.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCheckNamedFramebufferStatus")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify whether data read via glReadPixels should be clamped @@ -10075,7 +10075,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether to apply color clamping. clamp must be True or False. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClampColor")] - public static void ClampColor(OpenTK.Graphics.OpenGL4.ClampColorTarget target, OpenTK.Graphics.OpenGL4.ClampColorMode clamp) { throw new NotImplementedException(); } + public static void ClampColor(OpenTK.Graphics.OpenGL4.ClampColorTarget target, OpenTK.Graphics.OpenGL4.ClampColorMode clamp) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Clear buffers to preset values @@ -10084,7 +10084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClear")] - public static void Clear(OpenTK.Graphics.OpenGL4.ClearBufferMask mask) { throw new NotImplementedException(); } + public static void Clear(OpenTK.Graphics.OpenGL4.ClearBufferMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10105,7 +10105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] - public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10129,7 +10129,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10153,7 +10153,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10177,7 +10177,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill a buffer object's data store with a fixed value @@ -10200,7 +10200,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferData")] 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, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10218,7 +10218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The value to clear a stencil render buffer to. /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfi")] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10234,7 +10234,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, [CountAttribute(Computed = "buffer")] Single[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10250,7 +10250,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, [CountAttribute(Computed = "buffer")] ref Single value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10266,7 +10266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferfv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10282,7 +10282,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, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10298,7 +10298,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, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10314,7 +10314,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10341,7 +10341,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10371,7 +10371,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10401,7 +10401,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10431,7 +10431,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10460,7 +10460,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] public static void ClearBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10487,7 +10487,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a memory location storing the data to be replicated into the buffer's data store. /// [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] - 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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10517,7 +10517,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10547,7 +10547,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10577,7 +10577,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_clear_buffer_object|VERSION_4_3] /// Fill all or part of buffer object's data store with a fixed value @@ -10606,7 +10606,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_clear_buffer_object|VERSION_4_3", Version = "4.3", EntryPoint = "glClearBufferSubData")] 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, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10622,7 +10622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10638,7 +10638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Clear individual buffers of the currently bound draw framebuffer @@ -10654,7 +10654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glClearBufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearBuffer(OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, [CountAttribute(Computed = "buffer")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify clear values for the color buffers @@ -10672,7 +10672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearColor")] - public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); } + public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the depth buffer @@ -10681,7 +10681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearDepth")] - public static void ClearDepth(Double depth) { throw new NotImplementedException(); } + public static void ClearDepth(Double depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Specify the clear value for the depth buffer @@ -10690,7 +10690,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the depth value used when the depth buffer is cleared. The initial value is 1. /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glClearDepthf")] - public static void ClearDepth(Single d) { throw new NotImplementedException(); } + public static void ClearDepth(Single d) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10700,7 +10700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10712,7 +10712,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10724,7 +10724,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10736,7 +10736,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10748,7 +10748,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10758,7 +10758,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferData")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10770,7 +10770,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10782,7 +10782,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10794,7 +10794,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10806,7 +10806,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10818,7 +10818,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10832,7 +10832,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10846,7 +10846,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10860,7 +10860,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10874,7 +10874,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10886,7 +10886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10900,7 +10900,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10914,7 +10914,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10928,7 +10928,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10942,7 +10942,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10954,7 +10954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10968,7 +10968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10982,7 +10982,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -10996,7 +10996,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11010,7 +11010,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11022,7 +11022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedBufferSubData")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11036,7 +11036,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11050,7 +11050,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11064,7 +11064,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11078,7 +11078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11088,7 +11088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfi")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11098,7 +11098,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfi")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBufferCombined buffer, Int32 drawbuffer, Single depth, Int32 stencil) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11107,7 +11107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11116,7 +11116,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11125,7 +11125,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11134,7 +11134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11143,7 +11143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11152,7 +11152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferfv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11161,7 +11161,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11170,7 +11170,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11179,7 +11179,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11188,7 +11188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11197,7 +11197,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11206,7 +11206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11215,7 +11215,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11224,7 +11224,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new NotImplementedException(); } + public static void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -11233,7 +11233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glClearNamedFramebufferuiv")] [CLSCompliant(false)] - public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ClearNamedFramebuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ClearBuffer buffer, Int32 drawbuffer, UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the clear value for the stencil buffer @@ -11242,7 +11242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the index used when the stencil buffer is cleared. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glClearStencil")] - public static void ClearStencil(Int32 s) { throw new NotImplementedException(); } + public static void ClearStencil(Int32 s) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11264,7 +11264,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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11288,7 +11288,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11312,7 +11312,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11336,7 +11336,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11360,7 +11360,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11382,7 +11382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11406,7 +11406,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11430,7 +11430,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11454,7 +11454,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all a texture image with a constant value @@ -11478,7 +11478,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearTexImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11518,7 +11518,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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11560,7 +11560,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11602,7 +11602,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11644,7 +11644,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11686,7 +11686,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11726,7 +11726,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11768,7 +11768,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11810,7 +11810,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11852,7 +11852,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.4 or ARB_clear_texture|VERSION_4_4] /// Fills all or part of a texture image with a constant value @@ -11894,7 +11894,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -11910,7 +11910,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(); } + public static OpenTK.Graphics.OpenGL4.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Block and wait for a sync object to become signaled @@ -11926,13 +11926,13 @@ 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, UInt64 timeout) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_clip_control|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_clip_control|VERSION_4_5", Version = "4.5", EntryPoint = "glClipControl")] - public static void ClipControl(OpenTK.Graphics.OpenGL4.ClipOrigin origin, OpenTK.Graphics.OpenGL4.ClipDepthMode depth) { throw new NotImplementedException(); } + public static void ClipControl(OpenTK.Graphics.OpenGL4.ClipOrigin origin, OpenTK.Graphics.OpenGL4.ClipDepthMode depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable and disable writing of frame buffer color components @@ -11950,7 +11950,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all True, indicating that the color components are written. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glColorMask")] - public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); } + public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable and disable writing of frame buffer color components @@ -11972,7 +11972,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(); } + public static void ColorMask(Int32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable and disable writing of frame buffer color components @@ -11994,63 +11994,63 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ColorMask(UInt32 index, bool r, bool g, bool b, bool a) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 color) { throw new NotImplementedException(); } + public static void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 color) { throw new NotImplementedException(); } + public static void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void ColorP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12074,7 +12074,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to replace the specified region of the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] - public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new NotImplementedException(); } + public static void ColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,count")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12101,7 +12101,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,count")] T5[] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12128,7 +12128,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,count")] T5[,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12155,7 +12155,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,count")] T5[,,] data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -12181,7 +12181,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorSubTable")] 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, CountAttribute(Computed = "format,type,count")] ref T5 data) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12205,7 +12205,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12232,7 +12232,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T5[] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12259,7 +12259,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T5[,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12286,7 +12286,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T5[,,] table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a color lookup table @@ -12312,7 +12312,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTable")] 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, CountAttribute(Computed = "format,type,width")] ref T5 table) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12328,7 +12328,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12344,7 +12344,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, [CountAttribute(Computed = "pname")] ref Single @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12360,7 +12360,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameterfv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12376,7 +12376,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12392,7 +12392,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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set color lookup table parameters @@ -12408,7 +12408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glColorTableParameteriv")] [CLSCompliant(false)] - public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.ColorTableParameterPName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -12418,7 +12418,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(); } + public static void CompileShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Compiles a shader object @@ -12428,7 +12428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")] [CLSCompliant(false)] - public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); } + public static void CompileShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12455,7 +12455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] - public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12485,7 +12485,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12515,7 +12515,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12545,7 +12545,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture image in a compressed format @@ -12574,7 +12574,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage1D")] public static void CompressedTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12604,7 +12604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] - public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12637,7 +12637,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12670,7 +12670,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12703,7 +12703,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture image in a compressed format @@ -12735,7 +12735,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12768,7 +12768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12804,7 +12804,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12840,7 +12840,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12876,7 +12876,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture image in a compressed format @@ -12911,7 +12911,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexImage3D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -12938,7 +12938,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] - public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -12968,7 +12968,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -12998,7 +12998,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -13028,7 +13028,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a one-dimensional texture subimage in a compressed format @@ -13057,7 +13057,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage1D")] public static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13090,7 +13090,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13126,7 +13126,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T8[] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13162,7 +13162,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T8[,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13198,7 +13198,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T8[,,] data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a two-dimensional texture subimage in a compressed format @@ -13233,7 +13233,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage2D")] 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, CountAttribute(Parameter = "imageSize")] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13272,7 +13272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the compressed image data in memory. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] - 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new NotImplementedException(); } + 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, [CountAttribute(Parameter = "imageSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13314,7 +13314,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T10[] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13356,7 +13356,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T10[,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13398,7 +13398,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Parameter = "imageSize")] T10[,,] data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify a three-dimensional texture subimage in a compressed format @@ -13439,7 +13439,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glCompressedTexSubImage3D")] 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, CountAttribute(Parameter = "imageSize")] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13451,7 +13451,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage1D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13465,7 +13465,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13479,7 +13479,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13493,7 +13493,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13507,7 +13507,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13519,7 +13519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage1D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13533,7 +13533,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13547,7 +13547,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13561,7 +13561,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13575,7 +13575,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13589,7 +13589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage2D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13605,7 +13605,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13621,7 +13621,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13637,7 +13637,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13653,7 +13653,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13667,7 +13667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage2D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13683,7 +13683,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13699,7 +13699,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13715,7 +13715,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13731,7 +13731,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13747,7 +13747,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage3D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13765,7 +13765,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13783,7 +13783,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13801,7 +13801,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13819,7 +13819,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13835,7 +13835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCompressedTextureSubImage3D")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13853,7 +13853,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13871,7 +13871,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13889,7 +13889,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -13907,7 +13907,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T10 data) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -13931,7 +13931,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -13958,7 +13958,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T5[] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -13985,7 +13985,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T5[,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -14012,7 +14012,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T5[,,] image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a one-dimensional convolution filter @@ -14038,7 +14038,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter1D")] 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, CountAttribute(Computed = "format,type,width")] ref T5 image) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14065,7 +14065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a two-dimensional array of pixel data that is processed to build the convolution filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14095,7 +14095,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T6[] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14125,7 +14125,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T6[,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14155,7 +14155,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a two-dimensional convolution filter @@ -14184,7 +14184,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionFilter2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T6 image) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14199,7 +14199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterf")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Single @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Single @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14215,7 +14215,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14231,7 +14231,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameterfv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14246,7 +14246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The parameter value. Must be one of Reduce, ConstantBorder, ReplicateBorder. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteri")] - public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Int32 @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14262,7 +14262,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Set convolution parameters @@ -14278,7 +14278,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glConvolutionParameteriv")] [CLSCompliant(false)] - public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void ConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.ConvolutionParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -14299,7 +14299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ARB_copy_buffer|VERSION_3_1", Version = "3.1", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget readTarget, OpenTK.Graphics.OpenGL4.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget readTarget, OpenTK.Graphics.OpenGL4.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_copy_buffer|VERSION_3_1] /// Copy part of the data store of a buffer object to the data store of another buffer object @@ -14320,7 +14320,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the size, in basic machine units, of the data to be copied from readtarget to writetarget. /// [AutoGenerated(Category = "ARB_copy_buffer|VERSION_3_1", Version = "3.1", EntryPoint = "glCopyBufferSubData")] - public static void CopyBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget readTarget, OpenTK.Graphics.OpenGL4.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget readTarget, OpenTK.Graphics.OpenGL4.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// /// Respecify a portion of a color table @@ -14341,7 +14341,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The number of table entries to replace. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorSubTable")] - public static void CopyColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorSubTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a color table @@ -14362,7 +14362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The width of the pixel rectangle. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyColorTable")] - public static void CopyColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a one-dimensional convolution filter @@ -14383,7 +14383,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The width of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter1D")] - public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// /// Copy pixels into a two-dimensional convolution filter @@ -14407,7 +14407,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The height of the pixel array to copy. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glCopyConvolutionFilter2D")] - public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -14459,7 +14459,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_copy_image|VERSION_4_3] /// Perform a raw data copy between two images @@ -14511,7 +14511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14521,7 +14521,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14531,7 +14531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14541,7 +14541,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14551,7 +14551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyNamedBufferSubData")] [CLSCompliant(false)] - public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new NotImplementedException(); } + public static void CopyNamedBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 1D texture image @@ -14578,7 +14578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage1D")] - public static void CopyTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy pixels into a 2D texture image @@ -14608,7 +14608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexImage2D")] - public static void CopyTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTexImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a one-dimensional texture subimage @@ -14632,7 +14632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the width of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexSubImage1D")] - public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Copy a two-dimensional texture subimage @@ -14662,7 +14662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glCopyTexSubImage2D")] - public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Copy a three-dimensional texture subimage @@ -14695,7 +14695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the texture subimage. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glCopyTexSubImage3D")] - public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14706,7 +14706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage1D")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14717,7 +14717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage1D")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14730,7 +14730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage2D")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14743,7 +14743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage2D")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14757,7 +14757,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage3D")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14771,139 +14771,139 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCopyTextureSubImage3D")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); } + public static void CreateBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateBuffers")] [CLSCompliant(false)] - public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void CreateBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void CreateFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateFramebuffers")] [CLSCompliant(false)] - public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void CreateFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a program object /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")] - public static Int32 CreateProgram() { throw new NotImplementedException(); } + public static Int32 CreateProgram() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void CreateProgramPipelines(Int32 n, [OutAttribute] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateProgramPipelines")] [CLSCompliant(false)] - public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void CreateProgramPipelines(Int32 n, [OutAttribute] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14911,7 +14911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14919,7 +14919,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14927,7 +14927,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14935,7 +14935,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14943,7 +14943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + public static void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -14951,91 +14951,91 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateQueries")] [CLSCompliant(false)] - public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateQueries(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void CreateRenderbuffers(Int32 n, [OutAttribute] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateRenderbuffers")] [CLSCompliant(false)] - public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void CreateRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new NotImplementedException(); } + public static void CreateSamplers(Int32 n, [OutAttribute] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateSamplers")] [CLSCompliant(false)] - public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void CreateSamplers(Int32 n, [OutAttribute] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Creates a shader object @@ -15044,7 +15044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the type of shader to be created. Must be one of ComputeShader, VertexShader, TessControlShader, TessEvaluationShader, GeometryShader, or FragmentShader. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")] - public static Int32 CreateShader(OpenTK.Graphics.OpenGL4.ShaderType type) { throw new NotImplementedException(); } + public static Int32 CreateShader(OpenTK.Graphics.OpenGL4.ShaderType type) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Create a stand-alone program from an array of null-terminated source code strings @@ -15059,7 +15059,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glCreateShaderProgramv")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.ShaderType type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15067,7 +15067,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15075,7 +15075,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15083,7 +15083,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15091,7 +15091,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15099,7 +15099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new NotImplementedException(); } + public static void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -15107,91 +15107,91 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTextures")] [CLSCompliant(false)] - public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void CreateTextures(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 n, [OutAttribute] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new NotImplementedException(); } + public static void CreateTransformFeedbacks(Int32 n, [OutAttribute] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void CreateTransformFeedbacks(Int32 n, [OutAttribute] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new NotImplementedException(); } + public static void CreateVertexArrays(Int32 n, [OutAttribute] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glCreateVertexArrays")] [CLSCompliant(false)] - public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void CreateVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify whether front- or back-facing facets can be culled @@ -15200,7 +15200,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glCullFace")] - public static void CullFace(OpenTK.Graphics.OpenGL4.CullFaceMode mode) { throw new NotImplementedException(); } + public static void CullFace(OpenTK.Graphics.OpenGL4.CullFaceMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15212,7 +15212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] - public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15227,7 +15227,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15242,7 +15242,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15257,7 +15257,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Specify a callback to receive debugging messages from the GL @@ -15271,7 +15271,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glDebugMessageCallback")] public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15296,7 +15296,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, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15321,7 +15321,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, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15346,7 +15346,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] Int32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15371,7 +15371,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, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15396,7 +15396,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, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new NotImplementedException(); } + public static void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Control the reporting of debug messages in a debug context @@ -15421,7 +15421,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new NotImplementedException(); } + public static unsafe void DebugMessageControl(OpenTK.Graphics.OpenGL4.DebugSourceControl source, OpenTK.Graphics.OpenGL4.DebugTypeControl type, OpenTK.Graphics.OpenGL4.DebugSeverityControl severity, Int32 count, [CountAttribute(Parameter = "count")] UInt32* ids, bool enabled) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Inject an application-supplied message into the debug message queue @@ -15446,7 +15446,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, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, OpenTK.Graphics.OpenGL4.DebugType type, Int32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Inject an application-supplied message into the debug message queue @@ -15471,7 +15471,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, UInt32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new NotImplementedException(); } + public static void DebugMessageInsert(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, OpenTK.Graphics.OpenGL4.DebugType type, UInt32 id, OpenTK.Graphics.OpenGL4.DebugSeverity severity, Int32 length, [CountAttribute(Computed = "buf,length")] String buf) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15481,7 +15481,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15491,7 +15491,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffer([CountAttribute(Parameter = "n")] UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15504,7 +15504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15517,7 +15517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15530,7 +15530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15543,7 +15543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15556,7 +15556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new NotImplementedException(); } + public static void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named buffer objects @@ -15569,7 +15569,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteBuffers")] [CLSCompliant(false)] - public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void DeleteBuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15579,7 +15579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15589,7 +15589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffer([CountAttribute(Parameter = "n")] UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15602,7 +15602,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, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15615,7 +15615,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, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15628,7 +15628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15641,7 +15641,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, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15654,7 +15654,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, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new NotImplementedException(); } + public static void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete framebuffer objects @@ -15667,7 +15667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteFramebuffers")] [CLSCompliant(false)] - public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteFramebuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a program object @@ -15677,7 +15677,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(); } + public static void DeleteProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a program object @@ -15687,7 +15687,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")] [CLSCompliant(false)] - public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); } + public static void DeleteProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15697,7 +15697,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([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15707,7 +15707,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([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15720,7 +15720,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, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15733,7 +15733,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, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15746,7 +15746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15759,7 +15759,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, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15772,7 +15772,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, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Delete program pipeline objects @@ -15785,7 +15785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glDeleteProgramPipelines")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15795,7 +15795,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15805,7 +15805,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQuery([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15818,7 +15818,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15831,7 +15831,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15844,7 +15844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15857,7 +15857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15870,7 +15870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Delete named query objects @@ -15883,7 +15883,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glDeleteQueries")] [CLSCompliant(false)] - public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteQueries(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15893,7 +15893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15903,7 +15903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffer([CountAttribute(Parameter = "n")] UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15916,7 +15916,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, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15929,7 +15929,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, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15942,7 +15942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15955,7 +15955,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, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15968,7 +15968,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, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Delete renderbuffer objects @@ -15981,7 +15981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteRenderbuffers")] [CLSCompliant(false)] - public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void DeleteRenderbuffers(Int32 n, [CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -15991,7 +15991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16001,7 +16001,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSampler([CountAttribute(Parameter = "count")] UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16014,7 +16014,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, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16027,7 +16027,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, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16040,7 +16040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16053,7 +16053,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, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16066,7 +16066,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, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new NotImplementedException(); } + public static void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Delete named sampler objects @@ -16079,7 +16079,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glDeleteSamplers")] [CLSCompliant(false)] - public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void DeleteSamplers(Int32 count, [CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a shader object @@ -16089,7 +16089,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(); } + public static void DeleteShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Deletes a shader object @@ -16099,7 +16099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")] [CLSCompliant(false)] - public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); } + public static void DeleteShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Delete a sync object @@ -16108,7 +16108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The sync object to be deleted. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glDeleteSync")] - public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); } + public static void DeleteSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16118,7 +16118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16128,7 +16128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTexture([CountAttribute(Parameter = "n")] UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16141,7 +16141,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16154,7 +16154,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16167,7 +16167,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16180,7 +16180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16193,7 +16193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new NotImplementedException(); } + public static void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Delete named textures @@ -16206,7 +16206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDeleteTextures")] [CLSCompliant(false)] - public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void DeleteTextures(Int32 n, [CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16216,7 +16216,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16226,7 +16226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedback([CountAttribute(Parameter = "n")] UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16239,7 +16239,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, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16252,7 +16252,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, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16265,7 +16265,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16278,7 +16278,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, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16291,7 +16291,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, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new NotImplementedException(); } + public static void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Delete transform feedback objects @@ -16304,7 +16304,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glDeleteTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void DeleteTransformFeedbacks(Int32 n, [CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16314,7 +16314,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([CountAttribute(Parameter = "n")] Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16324,7 +16324,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([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArray([CountAttribute(Parameter = "n")] UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16337,7 +16337,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, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16350,7 +16350,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, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16363,7 +16363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16376,7 +16376,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, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16389,7 +16389,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, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new NotImplementedException(); } + public static void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Delete vertex array objects @@ -16402,7 +16402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glDeleteVertexArrays")] [CLSCompliant(false)] - public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void DeleteVertexArrays(Int32 n, [CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the value used for depth buffer comparisons @@ -16411,7 +16411,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthFunc")] - public static void DepthFunc(OpenTK.Graphics.OpenGL4.DepthFunction func) { throw new NotImplementedException(); } + public static void DepthFunc(OpenTK.Graphics.OpenGL4.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable writing into the depth buffer @@ -16420,7 +16420,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthMask")] - public static void DepthMask(bool flag) { throw new NotImplementedException(); } + public static void DepthMask(bool flag) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -16432,7 +16432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDepthRange")] - public static void DepthRange(Double near, Double far) { throw new NotImplementedException(); } + public static void DepthRange(Double near, Double far) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16448,7 +16448,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, [CountAttribute(Computed = "count")] Double[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16464,7 +16464,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, [CountAttribute(Computed = "count")] ref Double v) { throw new NotImplementedException(); } + public static void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16480,7 +16480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16496,7 +16496,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16512,7 +16512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new NotImplementedException(); } + public static void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified set of viewports @@ -16528,7 +16528,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangeArrayv")] [CLSCompliant(false)] - public static unsafe void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new NotImplementedException(); } + public static unsafe void DepthRangeArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates @@ -16540,7 +16540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1. /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glDepthRangef")] - public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); } + public static void DepthRange(Single n, Single f) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -16556,7 +16556,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(); } + public static void DepthRangeIndexed(Int32 index, Double n, Double f) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Specify mapping of depth values from normalized device coordinates to window coordinates for a specified viewport @@ -16572,7 +16572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void DepthRangeIndexed(UInt32 index, Double n, Double f) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Detaches a shader object from a program object to which it is attached @@ -16585,7 +16585,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(); } + public static void DetachShader(Int32 program, Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Detaches a shader object from a program object to which it is attached @@ -16598,52 +16598,52 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")] [CLSCompliant(false)] - public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); } + public static void DetachShader(UInt32 program, UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDisable")] - public static void Disable(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new NotImplementedException(); } + public static void Disable(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void Disable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [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(); } + public static void Disable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glDisableVertexArrayAttrib")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glDisableVertexArrayAttrib")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")] [CLSCompliant(false)] - public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups @@ -16659,7 +16659,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(); } + public static void DispatchCompute(Int32 num_groups_x, Int32 num_groups_y, Int32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups @@ -16675,7 +16675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void DispatchCompute(UInt32 num_groups_x, UInt32 num_groups_y, UInt32 num_groups_z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_compute_shader|VERSION_4_3] /// Launch one or more compute work groups using parameters stored in a buffer @@ -16684,7 +16684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The offset into the buffer object currently bound to the DispatchIndirectBuffer buffer target at which the dispatch parameters are stored. /// [AutoGenerated(Category = "ARB_compute_shader|VERSION_4_3", Version = "4.3", EntryPoint = "glDispatchComputeIndirect")] - public static void DispatchComputeIndirect(IntPtr indirect) { throw new NotImplementedException(); } + public static void DispatchComputeIndirect(IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16699,7 +16699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of indices to be rendered. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawArrays")] - public static void DrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); } + public static void DrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16711,7 +16711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] - public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16726,7 +16726,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16741,7 +16741,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16756,7 +16756,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render primitives from array data, taking parameters from memory @@ -16770,7 +16770,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawArraysIndirect")] public static void DrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a range of elements @@ -16788,7 +16788,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawArraysInstanced")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -16810,7 +16810,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(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a range of elements with offset applied to instanced attributes @@ -16832,7 +16832,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, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawArraysInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 first, Int32 count, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify which color buffers are to be drawn into @@ -16841,7 +16841,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies up to four color buffers to be drawn into. Symbolic constants None, FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and FrontAndBack are accepted. The initial value is Front for single-buffered contexts, and Back for double-buffered contexts. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glDrawBuffer")] - public static void DrawBuffer(OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void DrawBuffer(OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -16854,7 +16854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -16867,7 +16867,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies a list of color buffers to be drawn into @@ -16880,7 +16880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glDrawBuffers")] [CLSCompliant(false)] - public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void DrawBuffers(Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16898,7 +16898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16916,7 +16916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where the indices are stored. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] - public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16937,7 +16937,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16958,7 +16958,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16979,7 +16979,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Render primitives from array data @@ -16999,7 +16999,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glDrawElements")] public static void DrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17020,7 +17020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] - public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17044,7 +17044,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17068,7 +17068,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17092,7 +17092,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -17115,7 +17115,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsBaseVertex")] public static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17130,7 +17130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of a structure containing the draw parameters. /// [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] - public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect) { throw new NotImplementedException(); } + public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17148,7 +17148,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17166,7 +17166,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17184,7 +17184,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_draw_indirect|VERSION_4_0] /// Render indexed primitives from array data, taking parameters from memory @@ -17201,7 +17201,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_indirect|VERSION_4_0", Version = "4.0", EntryPoint = "glDrawElementsIndirect")] public static void DrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17222,7 +17222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17246,7 +17246,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17270,7 +17270,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17294,7 +17294,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Draw multiple instances of a set of elements @@ -17317,7 +17317,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glDrawElementsInstanced")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17342,7 +17342,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, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17367,7 +17367,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, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17394,7 +17394,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17421,7 +17421,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17448,7 +17448,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17475,7 +17475,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17502,7 +17502,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17529,7 +17529,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17556,7 +17556,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Draw multiple instances of a set of elements with offset applied to instanced attributes @@ -17583,7 +17583,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17607,7 +17607,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a constant that should be added to each element of indices when chosing elements from the enabled vertex arrays. /// [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] - public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 instancecount, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17634,7 +17634,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17661,7 +17661,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17688,7 +17688,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17714,7 +17714,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_draw_elements_base_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glDrawElementsInstancedBaseVertex")] public static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 instancecount, Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17742,7 +17742,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, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17770,7 +17770,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, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new NotImplementedException(); } + public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Parameter = "count")] IntPtr indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17800,7 +17800,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17830,7 +17830,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17860,7 +17860,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17890,7 +17890,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17920,7 +17920,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17950,7 +17950,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] T3[,,] indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -17980,7 +17980,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, Int32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_base_instance|VERSION_4_2] /// Render multiple instances of a set of primitives from array data with a per-element offset @@ -18010,7 +18010,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstancedBaseVertexBaseInstance(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Parameter = "count")] ref T3 indices, Int32 instancecount, Int32 basevertex, UInt32 baseinstance) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18035,7 +18035,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, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18062,7 +18062,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18089,7 +18089,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18116,7 +18116,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18143,7 +18143,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18168,7 +18168,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new NotImplementedException(); } + public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18195,7 +18195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18222,7 +18222,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18249,7 +18249,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Render primitives from array data @@ -18276,7 +18276,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18304,7 +18304,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, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18334,7 +18334,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18364,7 +18364,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18394,7 +18394,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18424,7 +18424,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18452,7 +18452,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, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new NotImplementedException(); } + public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18482,7 +18482,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18512,7 +18512,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18542,7 +18542,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T5[,,] indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render primitives from array data with a per-element offset @@ -18572,7 +18572,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T5 indices, Int32 basevertex) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -18585,7 +18585,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(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Render primitives using a count derived from a transform feedback object @@ -18598,7 +18598,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, UInt32 id) { throw new NotImplementedException(); } + public static void DrawTransformFeedback(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -18614,7 +18614,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(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a transform feedback object @@ -18630,7 +18630,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, UInt32 id, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -18646,7 +18646,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(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Render primitives using a count derived from a specifed stream of a transform feedback object @@ -18662,7 +18662,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, UInt32 id, UInt32 stream) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStream(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, UInt32 stream) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object @@ -18681,7 +18681,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(); } + public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 id, Int32 stream, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_transform_feedback_instanced|VERSION_4_2] /// Render multiple instances of primitives using a count derived from a specifed stream of a transform feedback object @@ -18700,7 +18700,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, UInt32 id, UInt32 stream, Int32 instancecount) { throw new NotImplementedException(); } + public static void DrawTransformFeedbackStreamInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, UInt32 id, UInt32 stream, Int32 instancecount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Enable or disable server-side GL capabilities @@ -18709,7 +18709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEnable")] - public static void Enable(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable or disable server-side GL capabilities @@ -18722,7 +18722,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(); } + public static void Enable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Enable or disable server-side GL capabilities @@ -18735,21 +18735,21 @@ 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, UInt32 index) { throw new NotImplementedException(); } + public static void Enable(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glEnableVertexArrayAttrib")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glEnableVertexArrayAttrib")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Enable or disable a generic vertex attribute array @@ -18759,7 +18759,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(); } + public static void EnableVertexAttribArray(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Enable or disable a generic vertex attribute array @@ -18769,34 +18769,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")] [CLSCompliant(false)] - public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexAttribArray(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEndConditionalRender")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glEndQuery")] - public static void EndQuery(OpenTK.Graphics.OpenGL4.QueryTarget target) { throw new NotImplementedException(); } + public static void EndQuery(OpenTK.Graphics.OpenGL4.QueryTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or 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(); } + public static void EndQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or 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, UInt32 index) { throw new NotImplementedException(); } + public static void EndQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glEndTransformFeedback")] - public static void EndTransformFeedback() { throw new NotImplementedException(); } + public static void EndTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Create a new sync object and insert it into the GL command stream @@ -18808,19 +18808,19 @@ namespace OpenTK.Graphics.OpenGL4 /// 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. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glFenceSync")] - public static IntPtr FenceSync(OpenTK.Graphics.OpenGL4.SyncCondition condition, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags) { throw new NotImplementedException(); } + public static IntPtr FenceSync(OpenTK.Graphics.OpenGL4.SyncCondition condition, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Block until all GL execution is complete /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFinish")] - public static void Finish() { throw new NotImplementedException(); } + public static void Finish() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Force execution of GL commands in finite time /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFlush")] - public static void Flush() { throw new NotImplementedException(); } + public static void Flush() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -18835,7 +18835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Indicate modifications to a range of a mapped buffer @@ -18850,7 +18850,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the length of the buffer subrange, in basic machine units. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glFlushMappedBufferRange")] - public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -18858,7 +18858,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -18866,7 +18866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -18874,7 +18874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -18882,7 +18882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glFlushMappedNamedBufferRange")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Set a named parameter of a framebuffer @@ -18897,7 +18897,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The new value for the parameter named pname. /// [AutoGenerated(Category = "ARB_framebuffer_no_attachments|VERSION_4_3", Version = "4.3", EntryPoint = "glFramebufferParameteri")] - public static void FramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void FramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -18916,7 +18916,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(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object @@ -18935,7 +18935,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, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -18954,7 +18954,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(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Attach a level of a texture object as a logical buffer to the currently bound framebuffer object @@ -18973,7 +18973,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, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void FramebufferTexture(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -18983,7 +18983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -18993,7 +18993,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -19003,7 +19003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -19013,7 +19013,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -19024,7 +19024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// @@ -19035,7 +19035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -19057,7 +19057,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(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Attach a single layer of a texture to a framebuffer @@ -19079,7 +19079,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, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define front- and back-facing polygons @@ -19088,14 +19088,14 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glFrontFace")] - public static void FrontFace(OpenTK.Graphics.OpenGL4.FrontFaceDirection mode) { throw new NotImplementedException(); } + public static void FrontFace(OpenTK.Graphics.OpenGL4.FrontFaceDirection mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static Int32 GenBuffer() { throw new NotImplementedException(); } + public static Int32 GenBuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19108,7 +19108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19121,7 +19121,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19134,7 +19134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19147,7 +19147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19160,7 +19160,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new NotImplementedException(); } + public static void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate buffer object names @@ -19173,7 +19173,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenBuffers")] [CLSCompliant(false)] - public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new NotImplementedException(); } + public static unsafe void GenBuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* buffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate mipmaps for a specified texture target @@ -19182,26 +19182,26 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the target to which the texture whose mimaps to generate is bound. target must be Texture1D, Texture2D, Texture3D, Texture1DArray, Texture2DArray or TextureCubeMap. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenerateMipmap")] - public static void GenerateMipmap(OpenTK.Graphics.OpenGL4.GenerateMipmapTarget target) { throw new NotImplementedException(); } + public static void GenerateMipmap(OpenTK.Graphics.OpenGL4.GenerateMipmapTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGenerateTextureMipmap")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(Int32 texture) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGenerateTextureMipmap")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(UInt32 texture) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static Int32 GenFramebuffer() { throw new NotImplementedException(); } + public static Int32 GenFramebuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19214,7 +19214,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, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19227,7 +19227,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, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19240,7 +19240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19253,7 +19253,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, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19266,7 +19266,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, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new NotImplementedException(); } + public static void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate framebuffer object names @@ -19279,14 +19279,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenFramebuffers")] [CLSCompliant(false)] - public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new NotImplementedException(); } + public static unsafe void GenFramebuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* framebuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19299,7 +19299,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, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19312,7 +19312,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, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19325,7 +19325,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19338,7 +19338,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, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19351,7 +19351,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, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Reserve program pipeline object names @@ -19364,14 +19364,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_separate_shader_objects|VERSION_4_1", Version = "4.1", EntryPoint = "glGenProgramPipelines")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static Int32 GenQuery() { throw new NotImplementedException(); } + public static Int32 GenQuery() { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19384,7 +19384,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19397,7 +19397,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19410,7 +19410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19423,7 +19423,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19436,7 +19436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Generate query object names @@ -19449,14 +19449,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGenQueries")] [CLSCompliant(false)] - public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenQueries(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static Int32 GenRenderbuffer() { throw new NotImplementedException(); } + public static Int32 GenRenderbuffer() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19469,7 +19469,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, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19482,7 +19482,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, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19495,7 +19495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19508,7 +19508,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, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19521,7 +19521,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, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new NotImplementedException(); } + public static void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Generate renderbuffer object names @@ -19534,14 +19534,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenRenderbuffers")] [CLSCompliant(false)] - public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new NotImplementedException(); } + public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* renderbuffers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static Int32 GenSampler() { throw new NotImplementedException(); } + public static Int32 GenSampler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19554,7 +19554,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, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19567,7 +19567,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, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19580,7 +19580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] Int32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19593,7 +19593,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, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19606,7 +19606,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, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new NotImplementedException(); } + public static void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Generate sampler object names @@ -19619,14 +19619,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glGenSamplers")] [CLSCompliant(false)] - public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new NotImplementedException(); } + public static unsafe void GenSamplers(Int32 count, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* samplers) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static Int32 GenTexture() { throw new NotImplementedException(); } + public static Int32 GenTexture() { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19639,7 +19639,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19652,7 +19652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19665,7 +19665,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19678,7 +19678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19691,7 +19691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new NotImplementedException(); } + public static void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 textures) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Generate texture names @@ -19704,14 +19704,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glGenTextures")] [CLSCompliant(false)] - public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new NotImplementedException(); } + public static unsafe void GenTextures(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* textures) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static Int32 GenTransformFeedback() { throw new NotImplementedException(); } + public static Int32 GenTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19724,7 +19724,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, CountAttribute(Parameter = "n")] Int32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19737,7 +19737,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, CountAttribute(Parameter = "n")] out Int32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19750,7 +19750,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19763,7 +19763,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, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19776,7 +19776,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, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new NotImplementedException(); } + public static void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 ids) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Reserve transform feedback object names @@ -19789,14 +19789,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glGenTransformFeedbacks")] [CLSCompliant(false)] - public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new NotImplementedException(); } + public static unsafe void GenTransformFeedbacks(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* ids) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static Int32 GenVertexArray() { throw new NotImplementedException(); } + public static Int32 GenVertexArray() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19809,7 +19809,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, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19822,7 +19822,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, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19835,7 +19835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19848,7 +19848,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, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19861,7 +19861,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, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new NotImplementedException(); } + public static void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Generate vertex array object names @@ -19874,7 +19874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_vertex_array_object|VERSION_3_0", Version = "3.0", EntryPoint = "glGenVertexArrays")] [CLSCompliant(false)] - public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new NotImplementedException(); } + public static unsafe void GenVertexArrays(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* arrays) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19893,7 +19893,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19912,7 +19912,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19931,7 +19931,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveAtomicCounterBuffer(Int32 program, Int32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19950,7 +19950,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(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19969,7 +19969,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(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_atomic_counters|VERSION_4_2] /// Retrieve information about the set of active atomic counter buffers for a program @@ -19988,7 +19988,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveAtomicCounterBuffer(UInt32 program, UInt32 bufferIndex, OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -20016,7 +20016,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -20044,7 +20044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -20072,7 +20072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveAttribType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active attribute variable for the specified program object @@ -20100,7 +20100,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")] [CLSCompliant(false)] - public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveAttribType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -20125,7 +20125,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -20150,7 +20150,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -20175,7 +20175,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine @@ -20200,7 +20200,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20222,7 +20222,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, CountAttribute(Computed = "pname")] Int32[] values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20244,7 +20244,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, CountAttribute(Computed = "pname")] out Int32 values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20266,7 +20266,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniform(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20288,7 +20288,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32[] values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20310,7 +20310,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] out Int32 values) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query a property of an active shader subroutine uniform @@ -20332,7 +20332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniform(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -20357,7 +20357,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -20382,7 +20382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniformName(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -20407,7 +20407,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Query the name of an active shader subroutine uniform @@ -20432,7 +20432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveSubroutineUniformName(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, UInt32 index, Int32 bufsize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufsize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -20460,7 +20460,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -20488,7 +20488,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -20516,7 +20516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.ActiveUniformType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns information about an active uniform variable for the specified program object @@ -20544,7 +20544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")] [CLSCompliant(false)] - public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.ActiveUniformType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20563,7 +20563,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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20582,7 +20582,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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20601,7 +20601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20620,7 +20620,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(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20639,7 +20639,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(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query information about an active uniform block @@ -20658,7 +20658,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlock(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter pname, [OutAttribute, CountAttribute(Computed = "program,uniformBlockIndex,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -20680,7 +20680,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -20702,7 +20702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(Int32 program, Int32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -20724,7 +20724,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(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the name of an active uniform block @@ -20746,7 +20746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -20768,7 +20768,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -20790,7 +20790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformName(Int32 program, Int32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -20812,7 +20812,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(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Query the name of an active uniform @@ -20834,7 +20834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String uniformName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20856,7 +20856,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, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20878,7 +20878,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, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref Int32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20900,7 +20900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(Int32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] Int32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20922,7 +20922,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(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32[] uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20944,7 +20944,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(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] ref UInt32 uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Returns information about several active uniform variables for the specified program object @@ -20966,7 +20966,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetActiveUniforms(UInt32 program, Int32 uniformCount, [CountAttribute(Parameter = "uniformCount")] UInt32* uniformIndices, OpenTK.Graphics.OpenGL4.ActiveUniformParameter pname, [OutAttribute, CountAttribute(Computed = "uniformCount,pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -20985,7 +20985,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, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21004,7 +21004,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, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out Int32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21023,7 +21023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(Int32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] Int32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21042,7 +21042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32[] shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21061,7 +21061,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new NotImplementedException(); } + public static void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] out Int32 count, [OutAttribute, CountAttribute(Parameter = "maxCount")] out UInt32 shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the handles of the shader objects attached to a program object @@ -21080,7 +21080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttachedShaders")] [CLSCompliant(false)] - public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new NotImplementedException(); } + public static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute, CountAttribute(Count = 1)] Int32* count, [OutAttribute, CountAttribute(Parameter = "maxCount")] UInt32* shaders) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of an attribute variable @@ -21093,7 +21093,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(); } + public static Int32 GetAttribLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of an attribute variable @@ -21106,7 +21106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetAttribLocation")] [CLSCompliant(false)] - public static Int32 GetAttribLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetAttribLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21114,7 +21114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21122,7 +21122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21130,7 +21130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21138,7 +21138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21146,7 +21146,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -21154,34 +21154,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new NotImplementedException(); } + public static void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")] [CLSCompliant(false)] - public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBoolean(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -21197,7 +21197,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -21213,7 +21213,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// Return parameters of a buffer object @@ -21229,7 +21229,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -21245,7 +21245,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -21261,7 +21261,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a buffer object @@ -21277,7 +21277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21292,7 +21292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] - public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21310,7 +21310,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21328,7 +21328,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21346,7 +21346,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return the pointer to a mapped buffer object's data store @@ -21363,7 +21363,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferPointerv")] public static void GetBufferPointer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21381,7 +21381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21402,7 +21402,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21423,7 +21423,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21444,7 +21444,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21464,7 +21464,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21482,7 +21482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the location where buffer object data is returned. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] - public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Parameter = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21503,7 +21503,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21524,7 +21524,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21545,7 +21545,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Returns a subset of a buffer object's data store @@ -21565,7 +21565,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetBufferSubData")] public static void GetBufferSubData(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21583,7 +21583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data containing the contents of the color table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] - public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new NotImplementedException(); } + public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr table) { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21604,7 +21604,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21625,7 +21625,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21646,7 +21646,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Retrieve contents of a color lookup table @@ -21666,7 +21666,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetColorTable")] public static void GetColorTable(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 table) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21682,7 +21682,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21698,7 +21698,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21714,7 +21714,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21730,7 +21730,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21746,7 +21746,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get color lookup table parameters @@ -21762,7 +21762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetColorTableParameter(OpenTK.Graphics.OpenGL4.ColorTableTarget target, OpenTK.Graphics.OpenGL4.GetColorTableParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21777,7 +21777,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the compressed texture image. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] - public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [OutAttribute, CountAttribute(Computed = "target,level")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21795,7 +21795,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21813,7 +21813,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21831,7 +21831,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] T2[,,] img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Return a compressed texture image @@ -21848,7 +21848,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glGetCompressedTexImage")] public static void GetCompressedTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level")] ref T2 img) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21857,7 +21857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureImage")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21868,7 +21868,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21879,7 +21879,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21890,7 +21890,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21901,7 +21901,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21910,7 +21910,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureImage")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21921,7 +21921,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21932,7 +21932,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21943,7 +21943,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -21954,7 +21954,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, Int32 level, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -21969,7 +21969,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureSubImage")] [CLSCompliant(false)] - public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -21986,7 +21986,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22003,7 +22003,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22020,7 +22020,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22037,7 +22037,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22052,7 +22052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetCompressedTextureSubImage")] [CLSCompliant(false)] - public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22069,7 +22069,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22086,7 +22086,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22103,7 +22103,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -22120,7 +22120,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, Int32 bufSize, [InAttribute, OutAttribute] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22138,7 +22138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the output image. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] - public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new NotImplementedException(); } + public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr image) { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22159,7 +22159,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22180,7 +22180,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22201,7 +22201,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] T3[,,] image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get current 1D or 2D convolution filter kernel @@ -22221,7 +22221,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetConvolutionFilter")] public static void GetConvolutionFilter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T3 image) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22237,7 +22237,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22253,7 +22253,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22269,7 +22269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22285,7 +22285,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22301,7 +22301,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get convolution parameters @@ -22317,7 +22317,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetConvolutionParameter(OpenTK.Graphics.OpenGL4.ConvolutionTarget target, OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22348,7 +22348,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, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22379,7 +22379,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, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22410,7 +22410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22441,7 +22441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22472,7 +22472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSource sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugType types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.DebugSeverity severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve messages from the debug message log @@ -22503,7 +22503,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetDebugMessageLog")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSource* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugType* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.DebugSeverity* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22511,7 +22511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22519,7 +22519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22527,7 +22527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22535,7 +22535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22543,7 +22543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22551,40 +22551,40 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Double GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double data) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetDoublev")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return error information /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetError")] - public static OpenTK.Graphics.OpenGL4.ErrorCode GetError() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.ErrorCode GetError() { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22592,7 +22592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22600,7 +22600,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22608,7 +22608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22616,7 +22616,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22624,7 +22624,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// @@ -22632,34 +22632,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Single GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetFloatv")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Query the bindings of color indices to user-defined varying out variables @@ -22672,7 +22672,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(); } + public static Int32 GetFragDataIndex(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_blend_func_extended|VERSION_3_3] /// Query the bindings of color indices to user-defined varying out variables @@ -22685,7 +22685,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(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataIndex(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Query the bindings of color numbers to user-defined varying out variables @@ -22698,7 +22698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(Int32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Query the bindings of color numbers to user-defined varying out variables @@ -22711,7 +22711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetFragDataLocation")] [CLSCompliant(false)] - public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetFragDataLocation(UInt32 program, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -22730,7 +22730,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -22749,7 +22749,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about attachments of a bound framebuffer object @@ -22768,7 +22768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -22784,7 +22784,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -22800,7 +22800,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_framebuffer_no_attachments|VERSION_4_3] /// Retrieve a named parameter from a framebuffer @@ -22816,11 +22816,11 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetGraphicsResetStatus")] - public static OpenTK.Graphics.OpenGL4.ResetStatus GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.ResetStatus GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22841,7 +22841,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the returned histogram table. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] - public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22865,7 +22865,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22889,7 +22889,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22913,7 +22913,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram table @@ -22936,7 +22936,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetHistogram")] public static void GetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -22952,7 +22952,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -22968,7 +22968,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -22984,7 +22984,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23000,7 +23000,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23016,7 +23016,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get histogram parameters @@ -23032,7 +23032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetHistogramParameter(OpenTK.Graphics.OpenGL4.HistogramTarget target, OpenTK.Graphics.OpenGL4.GetHistogramParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23040,7 +23040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23048,7 +23048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23056,7 +23056,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23064,7 +23064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23072,7 +23072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2] /// @@ -23080,34 +23080,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [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, CountAttribute(Computed = "target")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or 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(); } + public static Int64 GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glGetInteger64v")] [CLSCompliant(false)] - public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new NotImplementedException(); } + public static void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int64* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger64(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23115,7 +23115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23123,7 +23123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23131,7 +23131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23139,7 +23139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23147,7 +23147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1] /// @@ -23155,34 +23155,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "ARB_uniform_buffer_object|VERSION_3_0|VERSION_3_1", Version = "3.0", EntryPoint = "glGetIntegeri_v")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int32 GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.GetPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -23204,7 +23204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Parameter = "bufSize")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -23226,7 +23226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Parameter = "bufSize")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_internalformat_query2|VERSION_4_3] /// Retrieve information about implementation-dependent support for internal formats @@ -23248,7 +23248,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Parameter = "bufSize")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -23270,7 +23270,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, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -23292,7 +23292,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, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_internalformat_query|VERSION_4_2] /// Retrieve information about implementation-dependent support for internal formats @@ -23314,7 +23314,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformat(OpenTK.Graphics.OpenGL4.ImageTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, OpenTK.Graphics.OpenGL4.InternalFormatParameter pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23335,7 +23335,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A pointer to storage for the returned values. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] - public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new NotImplementedException(); } + public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr values) { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23359,7 +23359,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,format,type")] T4[] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23383,7 +23383,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,format,type")] T4[,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23407,7 +23407,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,format,type")] T4[,,] values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minimum and maximum pixel values @@ -23430,7 +23430,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetMinmax")] public static void GetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type")] ref T4 values) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23446,7 +23446,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23462,7 +23462,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23478,7 +23478,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23494,7 +23494,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23510,7 +23510,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// /// Get minmax parameters @@ -23526,7 +23526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMinmaxParameter(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23542,7 +23542,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, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23558,7 +23558,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, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23574,7 +23574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23590,7 +23590,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, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23606,7 +23606,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, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new NotImplementedException(); } + public static void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single val) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Retrieve the location of a sample @@ -23622,7 +23622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* val) { throw new NotImplementedException(); } + public static unsafe void GetMultisample(OpenTK.Graphics.OpenGL4.GetMultisamplePName pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* val) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23630,7 +23630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23638,7 +23638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23646,7 +23646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23654,7 +23654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23662,7 +23662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23670,7 +23670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteri64v")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23678,7 +23678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23686,7 +23686,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23694,7 +23694,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23702,7 +23702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23710,7 +23710,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23718,7 +23718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23726,7 +23726,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferPointerv")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23736,7 +23736,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23746,7 +23746,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23756,7 +23756,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23766,7 +23766,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23774,7 +23774,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferPointerv")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23784,7 +23784,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23794,7 +23794,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23804,7 +23804,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23814,7 +23814,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23823,7 +23823,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23834,7 +23834,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23845,7 +23845,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23856,7 +23856,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23867,7 +23867,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23876,7 +23876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23887,7 +23887,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23898,7 +23898,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23909,7 +23909,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23920,7 +23920,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23929,7 +23929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23940,7 +23940,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23951,7 +23951,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23962,7 +23962,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23973,7 +23973,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23982,7 +23982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedBufferSubData")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -23993,7 +23993,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24004,7 +24004,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24015,7 +24015,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24026,7 +24026,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24035,7 +24035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24044,7 +24044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24053,7 +24053,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24062,7 +24062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24071,7 +24071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24080,7 +24080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferAttachmentParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24088,7 +24088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24096,7 +24096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24104,7 +24104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24112,7 +24112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24120,7 +24120,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24128,7 +24128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedFramebufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24136,7 +24136,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24144,7 +24144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24152,7 +24152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24160,7 +24160,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24168,7 +24168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -24176,7 +24176,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetNamedRenderbufferParameteriv")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24185,7 +24185,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] - public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new NotImplementedException(); } + public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr table) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24197,7 +24197,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24209,7 +24209,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24221,7 +24221,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24232,7 +24232,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnColorTable")] public static void GetnColorTable(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 table) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24240,7 +24240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] - public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24251,7 +24251,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24262,7 +24262,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24273,7 +24273,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] T3[,,] pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24283,7 +24283,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnCompressedTexImage")] public static void GetnCompressedTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 lod, Int32 bufSize, [InAttribute, OutAttribute] ref T3 pixels) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24292,7 +24292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] - public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new NotImplementedException(); } + public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr image) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24304,7 +24304,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24316,7 +24316,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24328,7 +24328,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24339,7 +24339,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnConvolutionFilter")] public static void GetnConvolutionFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T4 image) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24349,7 +24349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] - public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new NotImplementedException(); } + public static void GetnHistogram(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24362,7 +24362,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24375,7 +24375,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24388,7 +24388,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24400,7 +24400,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnHistogram")] 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] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24409,7 +24409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24418,7 +24418,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [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(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24427,7 +24427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapdv")] [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(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24436,7 +24436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24445,7 +24445,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [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(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24454,7 +24454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapfv")] [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(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24463,7 +24463,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [CLSCompliant(false)] - public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new NotImplementedException(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24472,7 +24472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [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(); } + public static void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] out Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24481,7 +24481,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMapiv")] [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(); } + public static unsafe void GetnMap(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All query, Int32 bufSize, [OutAttribute] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24491,7 +24491,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] - public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new NotImplementedException(); } + public static void GetnMinmax(OpenTK.Graphics.OpenGL4.All target, bool reset, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24504,7 +24504,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24517,7 +24517,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24530,7 +24530,7 @@ namespace OpenTK.Graphics.OpenGL4 [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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24542,7 +24542,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnMinmax")] 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] ref T5 values) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24550,7 +24550,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24558,7 +24558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Single values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24566,7 +24566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapfv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24574,7 +24574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24582,7 +24582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24590,7 +24590,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24598,7 +24598,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24606,7 +24606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24614,7 +24614,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapuiv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24622,7 +24622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24630,7 +24630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out Int16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24638,7 +24638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] Int16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24646,7 +24646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24654,7 +24654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new NotImplementedException(); } + public static void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] out UInt16 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24662,33 +24662,33 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPixelMapusv")] [CLSCompliant(false)] - public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new NotImplementedException(); } + public static unsafe void GetnPixelMap(OpenTK.Graphics.OpenGL4.All map, Int32 bufSize, [OutAttribute] UInt16* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static Byte GetnPolygonStipple() { throw new NotImplementedException(); } + public static Byte GetnPolygonStipple() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte[] pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new NotImplementedException(); } + public static void GetnPolygonStipple(Int32 bufSize, [OutAttribute] out Byte pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnPolygonStipple")] [CLSCompliant(false)] - public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new NotImplementedException(); } + public static unsafe void GetnPolygonStipple(Int32 bufSize, [OutAttribute] Byte* pattern) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24700,7 +24700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnSeparableFilter")] - public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new NotImplementedException(); } + public static void GetnSeparableFilter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 rowBufSize, [OutAttribute] IntPtr row, Int32 columnBufSize, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24717,7 +24717,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24734,7 +24734,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24751,7 +24751,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24767,7 +24767,7 @@ namespace OpenTK.Graphics.OpenGL4 where T4 : struct where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24777,7 +24777,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] - public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetnTexImage(OpenTK.Graphics.OpenGL4.All target, Int32 level, OpenTK.Graphics.OpenGL4.All format, OpenTK.Graphics.OpenGL4.All type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24790,7 +24790,7 @@ namespace OpenTK.Graphics.OpenGL4 [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[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24803,7 +24803,7 @@ namespace OpenTK.Graphics.OpenGL4 [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[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24816,7 +24816,7 @@ namespace OpenTK.Graphics.OpenGL4 [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[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24828,7 +24828,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnTexImage")] 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] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24837,7 +24837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24846,7 +24846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24855,7 +24855,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24864,7 +24864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24873,7 +24873,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5] /// @@ -24882,7 +24882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformdv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24891,7 +24891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24900,7 +24900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24909,7 +24909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24918,7 +24918,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24927,7 +24927,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24936,7 +24936,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformfv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24945,7 +24945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24954,7 +24954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24963,7 +24963,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24972,7 +24972,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24981,7 +24981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24990,7 +24990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -24999,7 +24999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -25008,7 +25008,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -25017,7 +25017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glGetnUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25039,7 +25039,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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25061,7 +25061,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25083,7 +25083,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25105,7 +25105,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, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25127,7 +25127,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, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a named object identified within a namespace @@ -25149,7 +25149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25169,7 +25169,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25189,7 +25189,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25209,7 +25209,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25231,7 +25231,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25253,7 +25253,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25275,7 +25275,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25297,7 +25297,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25319,7 +25319,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25341,7 +25341,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25363,7 +25363,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25385,7 +25385,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25407,7 +25407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25429,7 +25429,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25451,7 +25451,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Retrieve the label of a sync object identified by a pointer @@ -25473,7 +25473,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25485,7 +25485,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pointer value specified by pname. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3|VERSION_4_3", Version = "4.3", EntryPoint = "glGetPointerv")] - public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25500,7 +25500,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25515,7 +25515,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25530,7 +25530,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3|VERSION_4_3] /// Return the address of the specified pointer @@ -25544,7 +25544,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug|VERSION_4_3|VERSION_4_3", Version = "4.3", EntryPoint = "glGetPointerv")] public static void GetPointer(OpenTK.Graphics.OpenGL4.GetPointervPName pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25566,7 +25566,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25590,7 +25590,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25614,7 +25614,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25638,7 +25638,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25662,7 +25662,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25684,7 +25684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25708,7 +25708,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25732,7 +25732,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25756,7 +25756,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25780,7 +25780,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25802,7 +25802,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(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25826,7 +25826,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25850,7 +25850,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25874,7 +25874,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25898,7 +25898,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25920,7 +25920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new NotImplementedException(); } + public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr binary) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25944,7 +25944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25968,7 +25968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -25992,7 +25992,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T4[,,] binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Return a binary representation of a program object's compiled and linked executable source @@ -26016,7 +26016,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetProgramBinary(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T4 binary) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -26035,7 +26035,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -26054,7 +26054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(Int32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -26073,7 +26073,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a program object @@ -26092,7 +26092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramInfoLog")] [CLSCompliant(false)] - public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26111,7 +26111,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26130,7 +26130,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26149,7 +26149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26168,7 +26168,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(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26187,7 +26187,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(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query a property of an interface in a program @@ -26206,7 +26206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramInterface(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26222,7 +26222,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26238,7 +26238,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26254,7 +26254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(Int32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26270,7 +26270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26286,7 +26286,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")] [CLSCompliant(false)] - public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a program object @@ -26302,7 +26302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgram(UInt32 program, OpenTK.Graphics.OpenGL4.GetProgramParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -26321,7 +26321,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -26340,7 +26340,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -26359,7 +26359,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(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve the info log string from a program pipeline object @@ -26378,7 +26378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26394,7 +26394,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26410,7 +26410,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26426,7 +26426,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26442,7 +26442,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(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26458,7 +26458,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(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Retrieve properties of a program pipeline object @@ -26474,7 +26474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramPipelineParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the index of a named resource within a program @@ -26490,7 +26490,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, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the index of a named resource within a program @@ -26506,7 +26506,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(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26526,7 +26526,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26545,7 +26545,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26565,7 +26565,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26585,7 +26585,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26605,7 +26605,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26624,7 +26624,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26644,7 +26644,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Retrieve values for multiple properties of a single active resource within a program object @@ -26664,7 +26664,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, [CountAttribute(Parameter = "propCount")] OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the location of a named resource within a program @@ -26680,7 +26680,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, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the location of a named resource within a program @@ -26696,7 +26696,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(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocation(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the fragment color index of a named variable within a program @@ -26712,7 +26712,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, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the fragment color index of a named variable within a program @@ -26728,7 +26728,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(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static Int32 GetProgramResourceLocationIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, [CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26754,7 +26754,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26780,7 +26780,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26806,7 +26806,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26832,7 +26832,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26858,7 +26858,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_program_interface_query|VERSION_4_3] /// Query the name of an indexed resource within a program @@ -26884,7 +26884,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -26903,7 +26903,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, CountAttribute(Count = 1)] out Int32 values) { throw new NotImplementedException(); } + public static void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -26922,7 +26922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetProgramStage(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -26941,7 +26941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] out Int32 values) { throw new NotImplementedException(); } + public static void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve properties of a program object corresponding to a specified shader stage @@ -26960,7 +26960,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetProgramStage(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ProgramStageParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -26969,7 +26969,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new NotImplementedException(); } + public static void GetQueryBufferObject(Int32 id, Int32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -26978,7 +26978,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetQueryBufferObjecti64v")] [CLSCompliant(false)] - public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new NotImplementedException(); } + public static void GetQueryBufferObject(UInt32 id, UInt32 buffer, OpenTK.Graphics.OpenGL4.All pname, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -26997,7 +26997,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27016,7 +27016,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27035,7 +27035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, Int32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27054,7 +27054,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, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27073,7 +27073,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, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback3|VERSION_4_0] /// Return parameters of an indexed query object target @@ -27092,7 +27092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryIndexed(OpenTK.Graphics.OpenGL4.QueryTarget target, UInt32 index, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -27108,7 +27108,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -27124,7 +27124,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object target @@ -27140,7 +27140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQuery(OpenTK.Graphics.OpenGL4.QueryTarget target, OpenTK.Graphics.OpenGL4.GetQueryParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27156,7 +27156,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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27172,7 +27172,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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27188,7 +27188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27204,7 +27204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27220,7 +27220,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27236,7 +27236,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27252,7 +27252,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27268,7 +27268,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27284,7 +27284,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(Int32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27300,7 +27300,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27316,7 +27316,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27332,7 +27332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27348,7 +27348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27364,7 +27364,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Return parameters of a query object @@ -27380,7 +27380,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27396,7 +27396,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27412,7 +27412,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glGetQueryObjectuiv")] [CLSCompliant(false)] - public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Return parameters of a query object @@ -27428,7 +27428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetQueryObject(UInt32 id, OpenTK.Graphics.OpenGL4.GetQueryObjectParam pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -27444,7 +27444,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -27460,7 +27460,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Retrieve information about a bound renderbuffer object @@ -27476,7 +27476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27492,7 +27492,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27508,7 +27508,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27524,7 +27524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27540,7 +27540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27556,7 +27556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27572,7 +27572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27580,7 +27580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27588,7 +27588,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27596,7 +27596,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27604,7 +27604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27612,7 +27612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27620,7 +27620,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27628,7 +27628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27636,7 +27636,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -27644,7 +27644,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27660,7 +27660,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27676,7 +27676,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27692,7 +27692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27708,7 +27708,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27724,7 +27724,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Return sampler parameter values @@ -27740,7 +27740,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetSamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27764,7 +27764,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to storage for the span filter image (currently unused). /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glGetSeparableFilter")] - public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new NotImplementedException(); } + public static void GetSeparableFilter(OpenTK.Graphics.OpenGL4.SeparableTarget target, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr row, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr column, [OutAttribute, CountAttribute(Computed = "target,format,type")] IntPtr span) { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27793,7 +27793,7 @@ namespace OpenTK.Graphics.OpenGL4 where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27822,7 +27822,7 @@ namespace OpenTK.Graphics.OpenGL4 where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27851,7 +27851,7 @@ namespace OpenTK.Graphics.OpenGL4 where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Get separable convolution filter kernel images @@ -27879,7 +27879,7 @@ namespace OpenTK.Graphics.OpenGL4 where T3 : struct where T4 : struct where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -27898,7 +27898,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -27917,7 +27917,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -27936,7 +27936,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the information log for a shader object @@ -27955,7 +27955,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderInfoLog")] [CLSCompliant(false)] - public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -27971,7 +27971,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -27987,7 +27987,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -28003,7 +28003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(Int32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -28019,7 +28019,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -28035,7 +28035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")] [CLSCompliant(false)] - public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns a parameter from a shader object @@ -28051,7 +28051,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetShader(UInt32 shader, OpenTK.Graphics.OpenGL4.ShaderParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -28070,7 +28070,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, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32[] range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -28089,7 +28089,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, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new NotImplementedException(); } + public static void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] out Int32 range, [OutAttribute, CountAttribute(Count = 1)] out Int32 precision) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Retrieve the range and precision for numeric formats supported by the shader compiler @@ -28108,7 +28108,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new NotImplementedException(); } + public static unsafe void GetShaderPrecisionFormat(OpenTK.Graphics.OpenGL4.ShaderType shadertype, OpenTK.Graphics.OpenGL4.ShaderPrecision precisiontype, [OutAttribute, CountAttribute(Count = 2)] Int32* range, [OutAttribute, CountAttribute(Count = 1)] Int32* precision) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -28127,7 +28127,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -28146,7 +28146,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(Int32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -28165,7 +28165,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the source code string from a shader object @@ -28184,7 +28184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderSource")] [CLSCompliant(false)] - public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new NotImplementedException(); } + public static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String source) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a string describing the current GL connection @@ -28193,7 +28193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant, one of Vendor, Renderer, Version, or ShadingLanguageVersion. Additionally, glGetStringi accepts the Extensions token. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetString")] - public static String GetString(OpenTK.Graphics.OpenGL4.StringName name) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL4.StringName name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -28206,7 +28206,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(); } + public static String GetString(OpenTK.Graphics.OpenGL4.StringNameIndexed name, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Return a string describing the current GL connection @@ -28219,7 +28219,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, UInt32 index) { throw new NotImplementedException(); } + public static String GetString(OpenTK.Graphics.OpenGL4.StringNameIndexed name, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the index of a subroutine uniform of a given shader stage within a program @@ -28235,7 +28235,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(); } + public static Int32 GetSubroutineIndex(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the index of a subroutine uniform of a given shader stage within a program @@ -28251,7 +28251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static Int32 GetSubroutineIndex(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the location of a subroutine uniform of a given shader stage within a program @@ -28267,7 +28267,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(); } + public static Int32 GetSubroutineUniformLocation(Int32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the location of a subroutine uniform of a given shader stage within a program @@ -28283,7 +28283,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static Int32 GetSubroutineUniformLocation(UInt32 program, OpenTK.Graphics.OpenGL4.ShaderType shadertype, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -28305,7 +28305,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -28327,7 +28327,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new NotImplementedException(); } + public static void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 values) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Query the properties of a sync object @@ -28349,7 +28349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new NotImplementedException(); } + public static unsafe void GetSync(IntPtr sync, OpenTK.Graphics.OpenGL4.SyncParameterName pname, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* values) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28370,7 +28370,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the texture image. Should be a pointer to an array of the type specified by type. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] - public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28394,7 +28394,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,level,format,type")] T4[] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28418,7 +28418,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,level,format,type")] T4[,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28442,7 +28442,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "target,level,format,type")] T4[,,] pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return a texture image @@ -28465,7 +28465,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glGetTexImage")] public static void GetTexImage(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T4 pixels) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28484,7 +28484,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28503,7 +28503,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28522,7 +28522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28541,7 +28541,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28560,7 +28560,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values for a specific level of detail @@ -28579,7 +28579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28595,7 +28595,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, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28611,7 +28611,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, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28627,7 +28627,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28635,7 +28635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28643,7 +28643,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28651,7 +28651,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28659,7 +28659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28667,7 +28667,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -28675,7 +28675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28691,7 +28691,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, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28707,7 +28707,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, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Return texture parameter values @@ -28723,7 +28723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28734,7 +28734,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureImage")] [CLSCompliant(false)] - public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28747,7 +28747,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28760,7 +28760,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28773,7 +28773,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28786,7 +28786,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28797,7 +28797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureImage")] [CLSCompliant(false)] - public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28810,7 +28810,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28823,7 +28823,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28836,7 +28836,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28849,7 +28849,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28858,7 +28858,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28867,7 +28867,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28876,7 +28876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28885,7 +28885,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28894,7 +28894,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28903,7 +28903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28912,7 +28912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28921,7 +28921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28930,7 +28930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28939,7 +28939,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28948,7 +28948,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28957,7 +28957,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureLevelParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28965,7 +28965,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28973,7 +28973,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28981,7 +28981,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28989,7 +28989,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -28997,7 +28997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29005,7 +29005,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29013,7 +29013,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29021,7 +29021,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29029,7 +29029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29037,7 +29037,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29045,7 +29045,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29053,7 +29053,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29061,7 +29061,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29069,7 +29069,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29077,7 +29077,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29085,7 +29085,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29093,7 +29093,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29101,7 +29101,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29109,7 +29109,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29117,7 +29117,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29125,7 +29125,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29142,7 +29142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureSubImage")] [CLSCompliant(false)] - public static void GetTextureSubImage(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, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureSubImage(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, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29161,7 +29161,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29180,7 +29180,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29199,7 +29199,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29218,7 +29218,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29235,7 +29235,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_texture_sub_image|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTextureSubImage")] [CLSCompliant(false)] - public static void GetTextureSubImage(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, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureSubImage(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, Int32 bufSize, [OutAttribute] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29254,7 +29254,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29273,7 +29273,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29292,7 +29292,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_get_texture_sub_image|VERSION_4_5] /// @@ -29311,7 +29311,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureSubImage(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, Int32 bufSize, [InAttribute, OutAttribute] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29320,7 +29320,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29329,7 +29329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29338,7 +29338,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29347,7 +29347,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29356,7 +29356,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29365,7 +29365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29374,7 +29374,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29383,7 +29383,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29392,7 +29392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbacki64_(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, Int32 index, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29401,7 +29401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29410,7 +29410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29419,7 +29419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbacki64_v")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbacki64_(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackIndexedParameter pname, UInt32 index, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29427,7 +29427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29435,7 +29435,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29443,7 +29443,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(Int32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29451,7 +29451,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29459,7 +29459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -29467,7 +29467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetTransformFeedbackiv")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedback(UInt32 xfb, OpenTK.Graphics.OpenGL4.TransformFeedbackParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -29495,7 +29495,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, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -29523,7 +29523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -29551,7 +29551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Count = 1)] out Int32 size, [OutAttribute, CountAttribute(Count = 1)] out OpenTK.Graphics.OpenGL4.TransformFeedbackType type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Retrieve information about varying variables selected for transform feedback @@ -29579,7 +29579,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")] [CLSCompliant(false)] - public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new NotImplementedException(); } + public static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Count = 1)] Int32* size, [OutAttribute, CountAttribute(Count = 1)] OpenTK.Graphics.OpenGL4.TransformFeedbackType* type, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String name) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29592,7 +29592,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, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(Int32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29605,7 +29605,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(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new NotImplementedException(); } + public static Int32 GetUniformBlockIndex(UInt32 program, [CountAttribute(Computed = "")] String uniformBlockName) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29621,7 +29621,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, CountAttribute(Computed = "program,location")] Double[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29637,7 +29637,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, CountAttribute(Computed = "program,location")] out Double @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29653,7 +29653,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "program,location")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29669,7 +29669,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(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29685,7 +29685,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(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Returns the value of a uniform variable @@ -29701,7 +29701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Computed = "program,location")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29717,7 +29717,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, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29733,7 +29733,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, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29749,7 +29749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29765,7 +29765,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29781,7 +29781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29797,7 +29797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformfv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29816,7 +29816,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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29835,7 +29835,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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out Int32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29854,7 +29854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(Int32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] Int32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29873,7 +29873,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(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32[] uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29892,7 +29892,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(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new NotImplementedException(); } + public static void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] out UInt32 uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Retrieve the index of a named uniform block @@ -29911,7 +29911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new NotImplementedException(); } + public static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, [CountAttribute(Computed = "uniformCount")] String[] uniformNames, [OutAttribute, CountAttribute(Computed = "uniformCount")] UInt32* uniformIndices) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29927,7 +29927,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, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29943,7 +29943,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, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29959,7 +29959,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29975,7 +29975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -29991,7 +29991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the value of a uniform variable @@ -30007,7 +30007,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of a uniform variable @@ -30020,7 +30020,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(); } + public static Int32 GetUniformLocation(Int32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Returns the location of a uniform variable @@ -30033,7 +30033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetUniformLocation")] [CLSCompliant(false)] - public static Int32 GetUniformLocation(UInt32 program, String name) { throw new NotImplementedException(); } + public static Int32 GetUniformLocation(UInt32 program, String name) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -30049,7 +30049,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, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -30065,7 +30065,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -30081,7 +30081,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, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Retrieve the value of a subroutine uniform of a given shader stage of the current program @@ -30097,7 +30097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniformSubroutine(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 location, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -30113,7 +30113,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -30129,7 +30129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Returns the value of a uniform variable @@ -30145,7 +30145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetUniformuiv")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30154,7 +30154,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30163,7 +30163,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30172,7 +30172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed64(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30181,7 +30181,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30190,7 +30190,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] out Int64 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30199,7 +30199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexed64iv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed64(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexed64Parameter pname, [OutAttribute] Int64* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30208,7 +30208,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30217,7 +30217,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30226,7 +30226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30235,7 +30235,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30244,7 +30244,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30253,7 +30253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayIndexediv")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayIndexed(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.VertexArrayIndexedParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30261,7 +30261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30269,7 +30269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30277,7 +30277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static unsafe void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30285,7 +30285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30293,7 +30293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -30301,7 +30301,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glGetVertexArrayiv")] [CLSCompliant(false)] - public static unsafe void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.VertexArrayParameter pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30317,7 +30317,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, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30333,7 +30333,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, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30349,7 +30349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30365,7 +30365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30381,7 +30381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribdv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30397,7 +30397,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30413,7 +30413,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, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30429,7 +30429,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, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30445,7 +30445,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30461,7 +30461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30477,7 +30477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30493,7 +30493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30501,7 +30501,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30509,7 +30509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30517,7 +30517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30525,7 +30525,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30533,7 +30533,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glGetVertexAttribIuiv")] [CLSCompliant(false)] - public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -30541,7 +30541,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, CountAttribute(Count = 1)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribI(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 1)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30557,7 +30557,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, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30573,7 +30573,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, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30589,7 +30589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30605,7 +30605,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30621,7 +30621,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")] [CLSCompliant(false)] - public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return a generic vertex attribute parameter @@ -30637,7 +30637,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttrib(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30645,7 +30645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30653,7 +30653,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30661,7 +30661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30669,7 +30669,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30677,7 +30677,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -30685,7 +30685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30701,7 +30701,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, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30719,7 +30719,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30737,7 +30737,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30755,7 +30755,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30773,7 +30773,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30789,7 +30789,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")] [CLSCompliant(false)] - public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new NotImplementedException(); } + public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30807,7 +30807,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30825,7 +30825,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30843,7 +30843,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Return the address of the specified generic vertex attribute pointer @@ -30861,7 +30861,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexAttribPointer(UInt32 index, OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 pointer) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify implementation-specific hints @@ -30873,7 +30873,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glHint")] - public static void Hint(OpenTK.Graphics.OpenGL4.HintTarget target, OpenTK.Graphics.OpenGL4.HintMode mode) { throw new NotImplementedException(); } + public static void Hint(OpenTK.Graphics.OpenGL4.HintTarget target, OpenTK.Graphics.OpenGL4.HintMode mode) { throw new BindingsNotRewrittenException(); } /// /// Define histogram table @@ -30891,7 +30891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// If True, pixels will be consumed by the histogramming process and no drawing or texture loading will take place. If False, pixels will proceed to the minmax process after histogramming. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glHistogram")] - public static void Histogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Histogram(OpenTK.Graphics.OpenGL4.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -30901,7 +30901,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(); } + public static void InvalidateBufferData(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a buffer object's data store @@ -30911,7 +30911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferData")] [CLSCompliant(false)] - public static void InvalidateBufferData(UInt32 buffer) { throw new NotImplementedException(); } + public static void InvalidateBufferData(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -30927,7 +30927,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, Int32 length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -30943,7 +30943,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(); } + public static void InvalidateBufferSubData(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -30959,7 +30959,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_invalidate_subdata|VERSION_4_3", Version = "4.3", EntryPoint = "glInvalidateBufferSubData")] [CLSCompliant(false)] - public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a buffer object's data store @@ -30975,7 +30975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void InvalidateBufferSubData(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -30991,7 +30991,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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -31007,7 +31007,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, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content some or all of a framebuffer object's attachments @@ -31023,7 +31023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31031,7 +31031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31039,7 +31039,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31047,7 +31047,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31055,7 +31055,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31063,7 +31063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31071,7 +31071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31083,7 +31083,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31095,7 +31095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31107,7 +31107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferSubData(Int32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31119,7 +31119,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31131,7 +31131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31143,7 +31143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glInvalidateNamedFramebufferSubData")] [CLSCompliant(false)] - public static unsafe void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateNamedFramebufferSubData(UInt32 framebuffer, Int32 numAttachments, OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -31171,7 +31171,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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment[] attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -31199,7 +31199,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, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] ref OpenTK.Graphics.OpenGL4.FramebufferAttachment attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the content of a region of some or all of a framebuffer object's attachments @@ -31227,7 +31227,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static unsafe void InvalidateSubFramebuffer(OpenTK.Graphics.OpenGL4.FramebufferTarget target, Int32 numAttachments, [CountAttribute(Parameter = "numAttachments")] OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the entirety a texture image @@ -31240,7 +31240,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(); } + public static void InvalidateTexImage(Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate the entirety a texture image @@ -31253,7 +31253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void InvalidateTexImage(UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a texture image @@ -31284,7 +31284,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(); } + public static void InvalidateTexSubImage(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_invalidate_subdata|VERSION_4_3] /// Invalidate a region of a texture image @@ -31315,7 +31315,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void InvalidateTexSubImage(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a buffer object @@ -31325,7 +31325,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(); } + public static bool IsBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a buffer object @@ -31335,7 +31335,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsBuffer")] [CLSCompliant(false)] - public static bool IsBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Test whether a capability is enabled @@ -31344,7 +31344,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant indicating a GL capability. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glIsEnabled")] - public static bool IsEnabled(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL4.EnableCap cap) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Test whether a capability is enabled @@ -31357,7 +31357,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(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Test whether a capability is enabled @@ -31370,7 +31370,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, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabled(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a framebuffer object @@ -31380,7 +31380,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(); } + public static bool IsFramebuffer(Int32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a framebuffer object @@ -31390,7 +31390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsFramebuffer")] [CLSCompliant(false)] - public static bool IsFramebuffer(UInt32 framebuffer) { throw new NotImplementedException(); } + public static bool IsFramebuffer(UInt32 framebuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a program object @@ -31400,7 +31400,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(); } + public static bool IsProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a program object @@ -31410,7 +31410,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsProgram")] [CLSCompliant(false)] - public static bool IsProgram(UInt32 program) { throw new NotImplementedException(); } + public static bool IsProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Determine if a name corresponds to a program pipeline object @@ -31420,7 +31420,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(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Determine if a name corresponds to a program pipeline object @@ -31430,7 +31430,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(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a query object @@ -31440,7 +31440,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(); } + public static bool IsQuery(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Determine if a name corresponds to a query object @@ -31450,7 +31450,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glIsQuery")] [CLSCompliant(false)] - public static bool IsQuery(UInt32 id) { throw new NotImplementedException(); } + public static bool IsQuery(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a renderbuffer object @@ -31460,7 +31460,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(); } + public static bool IsRenderbuffer(Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Determine if a name corresponds to a renderbuffer object @@ -31470,7 +31470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glIsRenderbuffer")] [CLSCompliant(false)] - public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new NotImplementedException(); } + public static bool IsRenderbuffer(UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Determine if a name corresponds to a sampler object @@ -31480,7 +31480,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(); } + public static bool IsSampler(Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Determine if a name corresponds to a sampler object @@ -31490,7 +31490,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sampler_objects|VERSION_3_3", Version = "3.3", EntryPoint = "glIsSampler")] [CLSCompliant(false)] - public static bool IsSampler(UInt32 sampler) { throw new NotImplementedException(); } + public static bool IsSampler(UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a shader object @@ -31500,7 +31500,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(); } + public static bool IsShader(Int32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Determines if a name corresponds to a shader object @@ -31510,7 +31510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glIsShader")] [CLSCompliant(false)] - public static bool IsShader(UInt32 shader) { throw new NotImplementedException(); } + public static bool IsShader(UInt32 shader) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Determine if a name corresponds to a sync object @@ -31519,7 +31519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a value that may be the name of a sync object. /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glIsSync")] - public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); } + public static bool IsSync(IntPtr sync) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Determine if a name corresponds to a texture @@ -31529,7 +31529,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(); } + public static bool IsTexture(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Determine if a name corresponds to a texture @@ -31539,7 +31539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glIsTexture")] [CLSCompliant(false)] - public static bool IsTexture(UInt32 texture) { throw new NotImplementedException(); } + public static bool IsTexture(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Determine if a name corresponds to a transform feedback object @@ -31549,7 +31549,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(); } + public static bool IsTransformFeedback(Int32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Determine if a name corresponds to a transform feedback object @@ -31559,7 +31559,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glIsTransformFeedback")] [CLSCompliant(false)] - public static bool IsTransformFeedback(UInt32 id) { throw new NotImplementedException(); } + public static bool IsTransformFeedback(UInt32 id) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -31569,7 +31569,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(); } + public static bool IsVertexArray(Int32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_vertex_array_object|VERSION_3_0] /// Determine if a name corresponds to a vertex array object @@ -31579,7 +31579,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(UInt32 array) { throw new NotImplementedException(); } + public static bool IsVertexArray(UInt32 array) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the width of rasterized lines @@ -31588,7 +31588,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the width of rasterized lines. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLineWidth")] - public static void LineWidth(Single width) { throw new NotImplementedException(); } + public static void LineWidth(Single width) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Links a program object @@ -31598,7 +31598,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(); } + public static void LinkProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Links a program object @@ -31608,7 +31608,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glLinkProgram")] [CLSCompliant(false)] - public static void LinkProgram(UInt32 program) { throw new NotImplementedException(); } + public static void LinkProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a logical pixel operation for rendering @@ -31617,7 +31617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: Clear, Set, Copy, CopyInverted, Noop, Invert, And, Nand, Or, Nor, Xor, Equiv, AndReverse, AndInverted, OrReverse, and OrInverted. The initial value is Copy. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glLogicOp")] - public static void LogicOp(OpenTK.Graphics.OpenGL4.LogicOp opcode) { throw new NotImplementedException(); } + public static void LogicOp(OpenTK.Graphics.OpenGL4.LogicOp opcode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// Map a buffer object's data store @@ -31629,7 +31629,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite. /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glMapBuffer")] - public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Map a section of a buffer object's data store @@ -31647,7 +31647,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_map_buffer_range|VERSION_3_0] /// Map a section of a buffer object's data store @@ -31665,21 +31665,21 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a combination of access flags indicating the desired access to the range. /// [AutoGenerated(Category = "ARB_map_buffer_range|VERSION_3_0", Version = "3.0", EntryPoint = "glMapBufferRange")] - public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL4.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBuffer")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBuffer")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31688,7 +31688,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31697,7 +31697,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31706,7 +31706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -31715,7 +31715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glMapNamedBufferRange")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_shader_image_load_store|VERSION_4_2] /// Defines a barrier ordering memory transactions @@ -31724,12 +31724,12 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the barriers to insert. Must be a bitwise combination of VertexAttribArrayBarrierBit, ElementArrayBarrierBit, UniformBarrierBit, TextureFetchBarrierBit, ShaderImageAccessBarrierBit, CommandBarrierBit, PixelBufferBarrierBit, TextureUpdateBarrierBit, BufferUpdateBarrierBit, FramebufferBarrierBit, TransformFeedbackBarrierBit, AtomicCounterBarrierBit, or ShaderStorageBarrierBit. If the special value AllBarrierBits is specified, all supported barriers will be inserted. /// [AutoGenerated(Category = "ARB_shader_image_load_store|VERSION_4_2", Version = "4.2", EntryPoint = "glMemoryBarrier")] - public static void MemoryBarrier(OpenTK.Graphics.OpenGL4.MemoryBarrierFlags barriers) { throw new NotImplementedException(); } + public static void MemoryBarrier(OpenTK.Graphics.OpenGL4.MemoryBarrierFlags barriers) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_ES3_1_compatibility|VERSION_4_5] /// [AutoGenerated(Category = "ARB_ES3_1_compatibility|VERSION_4_5", Version = "4.5", EntryPoint = "glMemoryBarrierByRegion")] - public static void MemoryBarrierByRegion(OpenTK.Graphics.OpenGL4.MemoryBarrierRegionFlags barriers) { throw new NotImplementedException(); } + public static void MemoryBarrierByRegion(OpenTK.Graphics.OpenGL4.MemoryBarrierRegionFlags barriers) { throw new BindingsNotRewrittenException(); } /// /// Define minmax table @@ -31744,7 +31744,7 @@ namespace OpenTK.Graphics.OpenGL4 /// If True, pixels will be consumed by the minmax process and no drawing or texture loading will take place. If False, pixels will proceed to the final conversion process after minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glMinmax")] - public static void Minmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new NotImplementedException(); } + public static void Minmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, bool sink) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0] /// Specifies minimum rate at which sample shaing takes place @@ -31753,7 +31753,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the rate at which samples are shaded within each covered pixel. /// [AutoGenerated(Category = "VERSION_4_0", Version = "4.0", EntryPoint = "glMinSampleShading")] - public static void MinSampleShading(Single value) { throw new NotImplementedException(); } + public static void MinSampleShading(Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -31772,7 +31772,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, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32[] first, [CountAttribute(Computed = "drawcount")] Int32[] count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -31791,7 +31791,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, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] ref Int32 first, [CountAttribute(Computed = "drawcount")] ref Int32 count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives from array data @@ -31810,7 +31810,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawArrays")] [CLSCompliant(false)] - public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "count")] Int32* first, [CountAttribute(Computed = "drawcount")] Int32* count, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31828,7 +31828,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] - public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31849,7 +31849,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31870,7 +31870,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31891,7 +31891,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T1[,,] indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render multiple sets of primitives from array data, taking parameters from memory @@ -31911,7 +31911,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawArraysIndirect")] public static void MultiDrawArraysIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T1 indirect, Int32 drawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31920,7 +31920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawArraysIndirectCount")] - public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31932,7 +31932,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31944,7 +31944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31956,7 +31956,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -31967,7 +31967,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawArraysIndirectCount")] public static void MultiDrawArraysIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -31989,7 +31989,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, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32013,7 +32013,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32037,7 +32037,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32061,7 +32061,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32085,7 +32085,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32107,7 +32107,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, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32131,7 +32131,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32155,7 +32155,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32179,7 +32179,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32203,7 +32203,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32225,7 +32225,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glMultiDrawElements")] [CLSCompliant(false)] - public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32249,7 +32249,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32273,7 +32273,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32297,7 +32297,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Render multiple sets of primitives by specifying indices of array data elements @@ -32321,7 +32321,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32346,7 +32346,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, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32373,7 +32373,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32400,7 +32400,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32427,7 +32427,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32454,7 +32454,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32[] count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32[] basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32479,7 +32479,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, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new NotImplementedException(); } + public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32506,7 +32506,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32533,7 +32533,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32560,7 +32560,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32587,7 +32587,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] ref Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] ref Int32 basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32612,7 +32612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new NotImplementedException(); } + public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount")] IntPtr indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32639,7 +32639,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32666,7 +32666,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32693,7 +32693,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] T3[,,] indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_draw_elements_base_vertex|VERSION_3_2] /// Render multiple sets of primitives by specifying indices of array data elements and an index to apply to each index @@ -32720,7 +32720,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [CountAttribute(Computed = "drawcount")] Int32* count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount")] ref T3 indices, Int32 drawcount, [CountAttribute(Computed = "drawcount")] Int32* basevertex) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32741,7 +32741,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the distance in basic machine units between elements of the draw parameter array. /// [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] - public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "drawcount,stride")] IntPtr indirect, Int32 drawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32765,7 +32765,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32789,7 +32789,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32813,7 +32813,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] T2[,,] indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_multi_draw_indirect|VERSION_4_3] /// Render indexed primitives from array data, taking parameters from memory @@ -32836,7 +32836,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "ARB_multi_draw_indirect|VERSION_4_3", Version = "4.3", EntryPoint = "glMultiDrawElementsIndirect")] public static void MultiDrawElementsIndirect(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "drawcount,stride")] ref T2 indirect, Int32 drawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32846,7 +32846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawElementsIndirectCount")] - public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32859,7 +32859,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32872,7 +32872,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32885,7 +32885,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -32897,7 +32897,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glMultiDrawElementsIndirectCount")] public static void MultiDrawElementsIndirectCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, IntPtr drawcount, Int32 maxdrawcount, Int32 stride) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32905,7 +32905,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32913,7 +32913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32921,7 +32921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32929,7 +32929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP1(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32937,7 +32937,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32945,7 +32945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32953,7 +32953,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32961,7 +32961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP2(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32969,7 +32969,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32977,7 +32977,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32985,7 +32985,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -32993,7 +32993,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP3(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -33001,7 +33001,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -33009,7 +33009,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -33017,7 +33017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -33025,7 +33025,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void MultiTexCoordP4(OpenTK.Graphics.OpenGL4.TextureUnit texture, OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33034,7 +33034,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33045,7 +33045,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33056,7 +33056,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33067,7 +33067,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33078,7 +33078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33087,7 +33087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33098,7 +33098,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33109,7 +33109,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33120,7 +33120,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33131,7 +33131,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33140,7 +33140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33151,7 +33151,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33162,7 +33162,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33173,7 +33173,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33184,7 +33184,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33193,7 +33193,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferData")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33204,7 +33204,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33215,7 +33215,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33226,7 +33226,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33237,7 +33237,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33246,7 +33246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33257,7 +33257,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33268,7 +33268,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33279,7 +33279,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33290,7 +33290,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33299,7 +33299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33310,7 +33310,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33321,7 +33321,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33332,7 +33332,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33343,7 +33343,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33352,7 +33352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33363,7 +33363,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33374,7 +33374,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33385,7 +33385,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33396,7 +33396,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33405,7 +33405,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferStorage")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33416,7 +33416,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33427,7 +33427,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33438,7 +33438,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33449,7 +33449,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33458,7 +33458,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33469,7 +33469,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33480,7 +33480,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33491,7 +33491,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33502,7 +33502,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33511,7 +33511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33522,7 +33522,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33533,7 +33533,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33544,7 +33544,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33555,7 +33555,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33564,7 +33564,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33575,7 +33575,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33586,7 +33586,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33597,7 +33597,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33608,7 +33608,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33617,7 +33617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedBufferSubData")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33628,7 +33628,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33639,7 +33639,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33650,7 +33650,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33661,21 +33661,21 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode buf) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33683,7 +33683,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33691,7 +33691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33699,7 +33699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferDrawBuffers(Int32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33707,7 +33707,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33715,7 +33715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new NotImplementedException(); } + public static void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, ref OpenTK.Graphics.OpenGL4.DrawBuffersEnum bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33723,7 +33723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferDrawBuffers")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferDrawBuffers(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33731,7 +33731,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferParameteri")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33739,21 +33739,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferParameteri")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferReadBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new NotImplementedException(); } + public static void NamedFramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferReadBuffer")] [CLSCompliant(false)] - public static void NamedFramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new NotImplementedException(); } + public static void NamedFramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33762,7 +33762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33771,7 +33771,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferRenderbuffer")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33780,7 +33780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTexture")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33789,7 +33789,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTexture")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33799,7 +33799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTextureLayer")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33809,7 +33809,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedFramebufferTextureLayer")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33818,7 +33818,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorage")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33827,7 +33827,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorage")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33837,7 +33837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorageMultisample")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -33847,35 +33847,35 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glNamedRenderbufferStorageMultisample")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void NormalP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a named object identified within a namespace @@ -33894,7 +33894,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, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a named object identified within a namespace @@ -33913,7 +33913,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, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33928,7 +33928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33946,7 +33946,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33964,7 +33964,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33982,7 +33982,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Label a a sync object identified by a pointer @@ -33999,7 +33999,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glObjectPtrLabel")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, [CountAttribute(Computed = "label,length")] String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -34012,7 +34012,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, [CountAttribute(Computed = "pname")] Single[] values) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single[] values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -34025,7 +34025,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, [CountAttribute(Computed = "pname")] ref Single values) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] ref Single values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -34038,7 +34038,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Single* values) { throw new NotImplementedException(); } + public static unsafe void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterFloat pname, [CountAttribute(Computed = "pname")] Single* values) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_tessellation_shader|VERSION_4_0] /// Specifies the parameters for patch primitives @@ -34050,13 +34050,13 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the new value for the parameter given by pname. /// [AutoGenerated(Category = "ARB_tessellation_shader|VERSION_4_0", Version = "4.0", EntryPoint = "glPatchParameteri")] - public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterInt pname, Int32 value) { throw new NotImplementedException(); } + public static void PatchParameter(OpenTK.Graphics.OpenGL4.PatchParameterInt pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Pause transform feedback operations /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glPauseTransformFeedback")] - public static void PauseTransformFeedback() { throw new NotImplementedException(); } + public static void PauseTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -34068,7 +34068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelStoref")] - public static void PixelStore(OpenTK.Graphics.OpenGL4.PixelStoreParameter pname, Single param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.OpenGL4.PixelStoreParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set pixel storage modes @@ -34080,7 +34080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the value that pname is set to. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPixelStorei")] - public static void PixelStore(OpenTK.Graphics.OpenGL4.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void PixelStore(OpenTK.Graphics.OpenGL4.PixelStoreParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34092,7 +34092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterf")] - public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Single param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34105,7 +34105,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34118,7 +34118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameterfv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34130,7 +34130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to. /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteri")] - public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34143,7 +34143,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.4] /// Specify point parameters @@ -34156,7 +34156,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_4", Version = "1.4", EntryPoint = "glPointParameteriv")] [CLSCompliant(false)] - public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void PointParameter(OpenTK.Graphics.OpenGL4.PointParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify the diameter of rasterized points @@ -34165,7 +34165,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the diameter of rasterized points. The initial value is 1. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPointSize")] - public static void PointSize(Single size) { throw new NotImplementedException(); } + public static void PointSize(Single size) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select a polygon rasterization mode @@ -34177,7 +34177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies how polygons will be rasterized. Accepted values are Point, Line, and Fill. The initial value is Fill for both front- and back-facing polygons. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glPolygonMode")] - public static void PolygonMode(OpenTK.Graphics.OpenGL4.MaterialFace face, OpenTK.Graphics.OpenGL4.PolygonMode mode) { throw new NotImplementedException(); } + public static void PolygonMode(OpenTK.Graphics.OpenGL4.MaterialFace face, OpenTK.Graphics.OpenGL4.PolygonMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Set the scale and units used to calculate depth values @@ -34189,20 +34189,20 @@ namespace OpenTK.Graphics.OpenGL4 /// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glPolygonOffset")] - public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PolygonOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6 or ARB_polygon_offset_clamp|VERSION_4_6] /// /// /// [AutoGenerated(Category = "ARB_polygon_offset_clamp|VERSION_4_6", Version = "4.6", EntryPoint = "glPolygonOffsetClamp")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glPopDebugGroup")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Specify the primitive restart index @@ -34212,7 +34212,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(); } + public static void PrimitiveRestartIndex(Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Specify the primitive restart index @@ -34222,7 +34222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_1", Version = "3.1", EntryPoint = "glPrimitiveRestartIndex")] [CLSCompliant(false)] - public static void PrimitiveRestartIndex(UInt32 index) { throw new NotImplementedException(); } + public static void PrimitiveRestartIndex(UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34241,7 +34241,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, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34262,7 +34262,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34283,7 +34283,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34304,7 +34304,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34325,7 +34325,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(Int32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34344,7 +34344,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(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34365,7 +34365,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34386,7 +34386,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34407,7 +34407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T2[,,] binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|VERSION_4_1] /// Load a program object with a program binary @@ -34428,7 +34428,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ProgramBinary(UInt32 program, OpenTK.Graphics.OpenGL4.BinaryFormat binaryFormat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T2 binary, Int32 length) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -34444,7 +34444,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|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(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|VERSION_4_1] /// Specify a parameter for a program object @@ -34460,7 +34460,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_get_program_binary|ARB_separate_shader_objects|VERSION_4_1|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(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramParameterName pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34476,7 +34476,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Double v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34492,7 +34492,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(UInt32 program, Int32 location, Double v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Double v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34511,7 +34511,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, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34530,7 +34530,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, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34549,7 +34549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34568,7 +34568,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34587,7 +34587,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34606,7 +34606,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34622,7 +34622,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34638,7 +34638,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(UInt32 program, Int32 location, Single v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34657,7 +34657,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, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34676,7 +34676,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, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34695,7 +34695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34714,7 +34714,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34733,7 +34733,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34752,7 +34752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34768,7 +34768,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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34784,7 +34784,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(UInt32 program, Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34803,7 +34803,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, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34822,7 +34822,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, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34841,7 +34841,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34860,7 +34860,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34879,7 +34879,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34898,7 +34898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34914,7 +34914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34933,7 +34933,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34952,7 +34952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34971,7 +34971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -34990,7 +34990,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Double v0, Double v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35009,7 +35009,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(UInt32 program, Int32 location, Double v0, Double v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Double v0, Double v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35028,7 +35028,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, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35047,7 +35047,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, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35066,7 +35066,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35085,7 +35085,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35104,7 +35104,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35123,7 +35123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35142,7 +35142,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35161,7 +35161,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(UInt32 program, Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35180,7 +35180,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35199,7 +35199,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35218,7 +35218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35237,7 +35237,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35256,7 +35256,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35275,7 +35275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35294,7 +35294,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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35313,7 +35313,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(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35332,7 +35332,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35351,7 +35351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35370,7 +35370,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35389,7 +35389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35408,7 +35408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35427,7 +35427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35446,7 +35446,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35465,7 +35465,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35487,7 +35487,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Double v0, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35509,7 +35509,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(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Double v0, Double v1, Double v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35528,7 +35528,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, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35547,7 +35547,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, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35566,7 +35566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35585,7 +35585,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35604,7 +35604,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35623,7 +35623,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35645,7 +35645,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35667,7 +35667,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(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35686,7 +35686,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35705,7 +35705,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35724,7 +35724,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35743,7 +35743,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35762,7 +35762,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35781,7 +35781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35803,7 +35803,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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35825,7 +35825,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(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35844,7 +35844,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35863,7 +35863,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35882,7 +35882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35901,7 +35901,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35920,7 +35920,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35939,7 +35939,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35961,7 +35961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35980,7 +35980,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -35999,7 +35999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36018,7 +36018,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36043,7 +36043,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36068,7 +36068,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(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Double v0, Double v1, Double v2, Double v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36087,7 +36087,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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36106,7 +36106,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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36125,7 +36125,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36144,7 +36144,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36163,7 +36163,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36182,7 +36182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36207,7 +36207,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36232,7 +36232,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(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36251,7 +36251,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36270,7 +36270,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36289,7 +36289,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36308,7 +36308,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36327,7 +36327,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36346,7 +36346,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36371,7 +36371,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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36396,7 +36396,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(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36415,7 +36415,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36434,7 +36434,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36453,7 +36453,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36472,7 +36472,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36491,7 +36491,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(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36510,7 +36510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36535,7 +36535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36554,7 +36554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36573,7 +36573,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Specify the value of a uniform variable for a specified program object @@ -36592,7 +36592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36602,7 +36602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36612,7 +36612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36622,7 +36622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36632,7 +36632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36642,7 +36642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36652,7 +36652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36662,7 +36662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36672,7 +36672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36682,7 +36682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36692,7 +36692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36702,7 +36702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36712,7 +36712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36722,7 +36722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36732,7 +36732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36742,7 +36742,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36752,7 +36752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36762,7 +36762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36772,7 +36772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36782,7 +36782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36792,7 +36792,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36802,7 +36802,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36812,7 +36812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36822,7 +36822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36832,7 +36832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36842,7 +36842,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36852,7 +36852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36862,7 +36862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36872,7 +36872,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36882,7 +36882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36892,7 +36892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36902,7 +36902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36912,7 +36912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36922,7 +36922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36932,7 +36932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36942,7 +36942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36952,7 +36952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36962,7 +36962,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36972,7 +36972,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36982,7 +36982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -36992,7 +36992,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37002,7 +37002,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37012,7 +37012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37022,7 +37022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37032,7 +37032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37042,7 +37042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37052,7 +37052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37062,7 +37062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37072,7 +37072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37082,7 +37082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37092,7 +37092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37102,7 +37102,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37112,7 +37112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37122,7 +37122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37132,7 +37132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37142,7 +37142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37152,7 +37152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37162,7 +37162,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37172,7 +37172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37182,7 +37182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37192,7 +37192,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37202,7 +37202,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37212,7 +37212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37222,7 +37222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37232,7 +37232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37242,7 +37242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37252,7 +37252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37262,7 +37262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37272,7 +37272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37282,7 +37282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37292,7 +37292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37302,7 +37302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37312,7 +37312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37322,7 +37322,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37332,7 +37332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37342,7 +37342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37352,7 +37352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37362,7 +37362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37372,7 +37372,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37382,7 +37382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37392,7 +37392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37402,7 +37402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37412,7 +37412,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37422,7 +37422,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37432,7 +37432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37442,7 +37442,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37452,7 +37452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37462,7 +37462,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37472,7 +37472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37482,7 +37482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37492,7 +37492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37502,7 +37502,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37512,7 +37512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37522,7 +37522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37532,7 +37532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37542,7 +37542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37552,7 +37552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37562,7 +37562,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37572,7 +37572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37582,7 +37582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37592,7 +37592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37602,7 +37602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37612,7 +37612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37622,7 +37622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37632,7 +37632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37642,7 +37642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37652,7 +37652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37662,7 +37662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// @@ -37672,7 +37672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_provoking_vertex|VERSION_3_2] /// Specifiy the vertex to be used as the source of data for flat shaded varyings @@ -37681,7 +37681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the vertex to be used as the source of data for flat shaded varyings. /// [AutoGenerated(Category = "ARB_provoking_vertex|VERSION_3_2", Version = "3.2", EntryPoint = "glProvokingVertex")] - public static void ProvokingVertex(OpenTK.Graphics.OpenGL4.ProvokingVertexMode mode) { throw new NotImplementedException(); } + public static void ProvokingVertex(OpenTK.Graphics.OpenGL4.ProvokingVertexMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Push a named debug group into the command stream @@ -37700,7 +37700,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, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, Int32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or KHR_debug|VERSION_4_3] /// Push a named debug group into the command stream @@ -37719,7 +37719,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, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new NotImplementedException(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.DebugSourceExternal source, UInt32 id, Int32 length, [CountAttribute(Computed = "message,length")] String message) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -37732,7 +37732,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(); } + public static void QueryCounter(Int32 id, OpenTK.Graphics.OpenGL4.QueryCounterTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_timer_query|VERSION_3_3] /// Record the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed. @@ -37745,7 +37745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void QueryCounter(UInt32 id, OpenTK.Graphics.OpenGL4.QueryCounterTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Select a color buffer source for pixels @@ -37754,7 +37754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a color buffer. Accepted values are FrontLeft, FrontRight, BackLeft, BackRight, Front, Back, Left, Right, and the constants ColorAttachmenti. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadBuffer")] - public static void ReadBuffer(OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new NotImplementedException(); } + public static void ReadBuffer(OpenTK.Graphics.OpenGL4.ReadBufferMode src) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37766,7 +37766,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glReadnPixels")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37781,7 +37781,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37796,7 +37796,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37811,7 +37811,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or KHR_robustness|VERSION_4_5] /// @@ -37825,7 +37825,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_robustness|VERSION_4_5", Version = "4.5", EntryPoint = "glReadnPixels")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37852,7 +37852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Returns the pixel data. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] - public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37882,7 +37882,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37912,7 +37912,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37942,7 +37942,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Read a block of pixels from the frame buffer @@ -37971,13 +37971,13 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glReadPixels")] public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Release resources consumed by the implementation's shader compiler /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glReleaseShaderCompiler")] - public static void ReleaseShaderCompiler() { throw new NotImplementedException(); } + public static void ReleaseShaderCompiler() { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Establish data storage, format and dimensions of a renderbuffer object's image @@ -37995,7 +37995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorage")] - public static void RenderbufferStorage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0 or ARB_framebuffer_object|VERSION_3_0] /// Establish data storage, format, dimensions and sample count of a renderbuffer object's image @@ -38016,7 +38016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the renderbuffer, in pixels. /// [AutoGenerated(Category = "ARB_framebuffer_object|VERSION_3_0", Version = "3.0", EntryPoint = "glRenderbufferStorageMultisample")] - public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// /// Reset histogram table entries to zero @@ -38025,7 +38025,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be Histogram. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetHistogram")] - public static void ResetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target) { throw new NotImplementedException(); } + public static void ResetHistogram(OpenTK.Graphics.OpenGL4.HistogramTarget target) { throw new BindingsNotRewrittenException(); } /// /// Reset minmax table entries to initial values @@ -38034,13 +38034,13 @@ namespace OpenTK.Graphics.OpenGL4 /// Must be Minmax. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glResetMinmax")] - public static void ResetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target) { throw new NotImplementedException(); } + public static void ResetMinmax(OpenTK.Graphics.OpenGL4.MinmaxTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_transform_feedback2|VERSION_4_0] /// Resume transform feedback operations /// [AutoGenerated(Category = "ARB_transform_feedback2|VERSION_4_0", Version = "4.0", EntryPoint = "glResumeTransformFeedback")] - public static void ResumeTransformFeedback() { throw new NotImplementedException(); } + public static void ResumeTransformFeedback() { throw new BindingsNotRewrittenException(); } /// [requires: v1.3] /// Specify multisample coverage parameters @@ -38052,7 +38052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False. /// [AutoGenerated(Category = "VERSION_1_3", Version = "1.3", EntryPoint = "glSampleCoverage")] - public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); } + public static void SampleCoverage(Single value, bool invert) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Set the value of a sub-word of the sample mask @@ -38065,7 +38065,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 maskNumber, Int32 mask) { throw new NotImplementedException(); } + public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Set the value of a sub-word of the sample mask @@ -38078,7 +38078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")] [CLSCompliant(false)] - public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new NotImplementedException(); } + public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38094,7 +38094,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(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38110,7 +38110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38126,7 +38126,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, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38142,7 +38142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38158,7 +38158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Single[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38174,7 +38174,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Single* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38190,7 +38190,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(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38206,7 +38206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38214,7 +38214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38222,7 +38222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38230,7 +38230,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38238,7 +38238,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38246,7 +38246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38254,7 +38254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38262,7 +38262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38270,7 +38270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new NotImplementedException(); } + public static void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// @@ -38278,7 +38278,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameterI(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] UInt32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38294,7 +38294,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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38310,7 +38310,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(Int32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38326,7 +38326,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Int32[] param) { throw new NotImplementedException(); } + public static void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_sampler_objects|VERSION_3_3] /// Set sampler parameters @@ -38342,7 +38342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Int32* param) { throw new NotImplementedException(); } + public static unsafe void SamplerParameter(UInt32 sampler, OpenTK.Graphics.OpenGL4.SamplerParameterName pname, [CountAttribute(Computed = "pname")] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Define the scissor box @@ -38360,7 +38360,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glScissor")] - public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38376,7 +38376,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, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38392,7 +38392,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, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38408,7 +38408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38424,7 +38424,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38440,7 +38440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for multiple viewports @@ -38456,7 +38456,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorArrayv")] [CLSCompliant(false)] - public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38478,7 +38478,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(); } + public static void ScissorIndexed(Int32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38500,7 +38500,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ScissorIndexed(UInt32 index, Int32 left, Int32 bottom, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38513,7 +38513,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, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38526,7 +38526,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, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38539,7 +38539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38552,7 +38552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38565,7 +38565,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Define the scissor box for a specific viewport @@ -38578,35 +38578,35 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glScissorIndexedv")] [CLSCompliant(false)] - public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void ScissorIndexed(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 color) { throw new NotImplementedException(); } + public static void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* color) { throw new NotImplementedException(); } + public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* color) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* color) { throw new NotImplementedException(); } + public static unsafe void SecondaryColorP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* color) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38636,7 +38636,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel. /// [AutoGenerated(Category = "ARB_imaging", Version = "", EntryPoint = "glSeparableFilter2D")] - 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, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "target,format,type,width")] IntPtr row, [CountAttribute(Computed = "target,format,type,height")] IntPtr column) { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38670,7 +38670,7 @@ namespace OpenTK.Graphics.OpenGL4 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, CountAttribute(Computed = "target,format,type,width")] T6[] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38704,7 +38704,7 @@ namespace OpenTK.Graphics.OpenGL4 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, CountAttribute(Computed = "target,format,type,width")] T6[,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38738,7 +38738,7 @@ namespace OpenTK.Graphics.OpenGL4 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, CountAttribute(Computed = "target,format,type,width")] T6[,,] row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] T7[,,] column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// /// Define a separable two-dimensional convolution filter @@ -38771,7 +38771,7 @@ namespace OpenTK.Graphics.OpenGL4 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, CountAttribute(Computed = "target,format,type,width")] ref T6 row, [InAttribute, OutAttribute, CountAttribute(Computed = "target,format,type,height")] ref T7 column) where T6 : struct where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38793,7 +38793,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, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38817,7 +38817,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38841,7 +38841,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38865,7 +38865,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38889,7 +38889,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38911,7 +38911,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, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38935,7 +38935,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38959,7 +38959,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -38983,7 +38983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39007,7 +39007,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref Int32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39029,7 +39029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39053,7 +39053,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39077,7 +39077,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39101,7 +39101,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39125,7 +39125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] Int32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39147,7 +39147,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, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39171,7 +39171,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39195,7 +39195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39219,7 +39219,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39243,7 +39243,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32[] shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39265,7 +39265,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, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39289,7 +39289,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39313,7 +39313,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39337,7 +39337,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39361,7 +39361,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39383,7 +39383,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_ES2_compatibility|VERSION_4_1", Version = "4.1", EntryPoint = "glShaderBinary")] [CLSCompliant(false)] - public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new NotImplementedException(); } + public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [CountAttribute(Parameter = "length")] IntPtr binary, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39407,7 +39407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39431,7 +39431,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39455,7 +39455,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_ES2_compatibility|VERSION_4_1] /// Load pre-compiled shader binaries @@ -39479,7 +39479,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ShaderBinary(Int32 count, [CountAttribute(Parameter = "count")] UInt32* shaders, OpenTK.Graphics.OpenGL4.BinaryFormat binaryformat, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 binary, Int32 length) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39498,7 +39498,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, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39517,7 +39517,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, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39536,7 +39536,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(Int32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39555,7 +39555,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32[] length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39574,7 +39574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new NotImplementedException(); } + public static void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] ref Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Replaces the source code in a shader object @@ -39593,7 +39593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glShaderSource")] [CLSCompliant(false)] - public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new NotImplementedException(); } + public static unsafe void ShaderSource(UInt32 shader, Int32 count, [CountAttribute(Parameter = "count")] String[] @string, [CountAttribute(Parameter = "count")] Int32* length) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_shader_storage_buffer_object|VERSION_4_3] /// Change an active shader storage block binding @@ -39609,7 +39609,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(); } + public static void ShaderStorageBlockBinding(Int32 program, Int32 storageBlockIndex, Int32 storageBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_shader_storage_buffer_object|VERSION_4_3] /// Change an active shader storage block binding @@ -39625,7 +39625,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(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new NotImplementedException(); } + public static void ShaderStorageBlockBinding(UInt32 program, UInt32 storageBlockIndex, UInt32 storageBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39635,7 +39635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32[] pConstantIndex, Int32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39645,7 +39645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, ref Int32 pConstantIndex, ref Int32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39655,7 +39655,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(Int32 shader, String pEntryPoint, Int32 numSpecializationConstants, Int32* pConstantIndex, Int32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39665,7 +39665,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32[] pConstantIndex, UInt32[] pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39675,7 +39675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new NotImplementedException(); } + public static void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, ref UInt32 pConstantIndex, ref UInt32 pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v4.6] /// @@ -39685,7 +39685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_4_6", Version = "4.6", EntryPoint = "glSpecializeShader")] [CLSCompliant(false)] - public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new NotImplementedException(); } + public static unsafe void SpecializeShader(UInt32 shader, String pEntryPoint, UInt32 numSpecializationConstants, UInt32* pConstantIndex, UInt32* pConstantValue) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -39701,7 +39701,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(); } + public static void StencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back function and reference value for stencil testing @@ -39717,7 +39717,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -39736,7 +39736,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(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back function and reference value for stencil testing @@ -39755,7 +39755,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFuncSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -39765,7 +39765,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(); } + public static void StencilMask(Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Control the front and back writing of individual bits in the stencil planes @@ -39775,7 +39775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilMask")] [CLSCompliant(false)] - public static void StencilMask(UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMask(UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -39788,7 +39788,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(); } + public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Control the front and/or back writing of individual bits in the stencil planes @@ -39801,7 +39801,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, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilMaskSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set front and back stencil test actions @@ -39816,7 +39816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glStencilOp")] - public static void StencilOp(OpenTK.Graphics.OpenGL4.StencilOp fail, OpenTK.Graphics.OpenGL4.StencilOp zfail, OpenTK.Graphics.OpenGL4.StencilOp zpass) { throw new NotImplementedException(); } + public static void StencilOp(OpenTK.Graphics.OpenGL4.StencilOp fail, OpenTK.Graphics.OpenGL4.StencilOp zfail, OpenTK.Graphics.OpenGL4.StencilOp zpass) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Set front and/or back stencil test actions @@ -39834,7 +39834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glStencilOpSeparate")] - public static void StencilOpSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilOp sfail, OpenTK.Graphics.OpenGL4.StencilOp dpfail, OpenTK.Graphics.OpenGL4.StencilOp dppass) { throw new NotImplementedException(); } + public static void StencilOpSeparate(OpenTK.Graphics.OpenGL4.StencilFace face, OpenTK.Graphics.OpenGL4.StencilOp sfail, OpenTK.Graphics.OpenGL4.StencilOp dpfail, OpenTK.Graphics.OpenGL4.StencilOp dppass) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Attach the storage for a buffer object to the active buffer texture @@ -39850,7 +39850,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(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1] /// Attach the storage for a buffer object to the active buffer texture @@ -39866,7 +39866,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, UInt32 buffer) { throw new NotImplementedException(); } + public static void TexBuffer(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -39888,7 +39888,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, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -39910,7 +39910,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(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -39932,7 +39932,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, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_buffer_range|VERSION_4_3] /// Bind a range of a buffer's data store to a buffer texture @@ -39954,119 +39954,119 @@ 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, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TexBufferRange(OpenTK.Graphics.OpenGL4.TextureBufferTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP1(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 coords) { throw new NotImplementedException(); } + public static void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* coords) { throw new NotImplementedException(); } + public static unsafe void TexCoordP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* coords) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40096,7 +40096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40129,7 +40129,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40162,7 +40162,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40195,7 +40195,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a one-dimensional texture image @@ -40227,7 +40227,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage1D")] 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, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40260,7 +40260,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40296,7 +40296,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40332,7 +40332,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40368,7 +40368,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Specify a two-dimensional texture image @@ -40403,7 +40403,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Establish the data storage, format, dimensions, and number of samples of a multisample texture's image @@ -40427,7 +40427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glTexImage2DMultisample")] - public static void TexImage2DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexImage2DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40463,7 +40463,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40502,7 +40502,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40541,7 +40541,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40580,7 +40580,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height,depth")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture image @@ -40618,7 +40618,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexImage3D")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_texture_multisample|VERSION_3_2] /// Establish the data storage, format, dimensions, and number of samples of a multisample texture's image @@ -40645,7 +40645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glTexImage3DMultisample")] - public static void TexImage3DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexImage3DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40660,7 +40660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the value of pname. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameterf")] - public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40676,7 +40676,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, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40692,7 +40692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40707,7 +40707,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the value of pname. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glTexParameteri")] - public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40715,7 +40715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40723,7 +40723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40731,7 +40731,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40739,7 +40739,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40747,7 +40747,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -40755,7 +40755,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [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, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameterI(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40771,7 +40771,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, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set texture parameters @@ -40787,7 +40787,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TexParameter(OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a one-dimensional texture @@ -40805,7 +40805,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the width of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage1D")] - public static void TexStorage1D(OpenTK.Graphics.OpenGL4.TextureTarget1d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TexStorage1D(OpenTK.Graphics.OpenGL4.TextureTarget1d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture @@ -40826,7 +40826,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the height of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage2D")] - public static void TexStorage2D(OpenTK.Graphics.OpenGL4.TextureTarget2d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TexStorage2D(OpenTK.Graphics.OpenGL4.TextureTarget2d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_storage_multisample|VERSION_4_3] /// Specify storage for a two-dimensional multisample texture @@ -40850,7 +40850,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_storage_multisample|VERSION_4_3", Version = "4.3", EntryPoint = "glTexStorage2DMultisample")] - public static void TexStorage2DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage2DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.2 or ARB_texture_storage|VERSION_4_2] /// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture @@ -40874,7 +40874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the depth of the texture, in texels. /// [AutoGenerated(Category = "ARB_texture_storage|VERSION_4_2", Version = "4.2", EntryPoint = "glTexStorage3D")] - public static void TexStorage3D(OpenTK.Graphics.OpenGL4.TextureTarget3d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TexStorage3D(OpenTK.Graphics.OpenGL4.TextureTarget3d target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_storage_multisample|VERSION_4_3] /// Specify storage for a two-dimensional multisample array texture @@ -40901,7 +40901,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image. /// [AutoGenerated(Category = "ARB_texture_storage_multisample|VERSION_4_3", Version = "4.3", EntryPoint = "glTexStorage3DMultisample")] - public static void TexStorage3DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TexStorage3DMultisample(OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -40928,7 +40928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] - 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -40958,7 +40958,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T6[] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -40988,7 +40988,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T6[,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -41018,7 +41018,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width")] T6[,,] pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a one-dimensional texture subimage @@ -41047,7 +41047,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage1D")] 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, CountAttribute(Computed = "format,type,width")] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41080,7 +41080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] - 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41116,7 +41116,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41152,7 +41152,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41188,7 +41188,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.1] /// Specify a two-dimensional texture subimage @@ -41223,7 +41223,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_1", Version = "1.1", EntryPoint = "glTexSubImage2D")] 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, CountAttribute(Computed = "format,type,width,height")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41262,7 +41262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies a pointer to the image data in memory. /// [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] - 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41304,7 +41304,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41346,7 +41346,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41388,7 +41388,7 @@ namespace OpenTK.Graphics.OpenGL4 [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, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v1.2] /// Specify a three-dimensional texture subimage @@ -41429,11 +41429,11 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "VERSION_1_2", Version = "1.2", EntryPoint = "glTexSubImage3D")] 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_texture_barrier|VERSION_4_5] [AutoGenerated(Category = "ARB_texture_barrier|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBarrier")] - public static void TextureBarrier() { throw new NotImplementedException(); } + public static void TextureBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41441,7 +41441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBuffer")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41449,7 +41449,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBuffer")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41459,7 +41459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41469,7 +41469,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41479,7 +41479,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41489,7 +41489,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureBufferRange")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41497,7 +41497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterf")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41505,7 +41505,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterf")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41513,7 +41513,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41521,7 +41521,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41529,7 +41529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41537,7 +41537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterfv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41545,7 +41545,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteri")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41553,7 +41553,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteri")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41561,7 +41561,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41569,7 +41569,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41577,7 +41577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41585,7 +41585,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41593,7 +41593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41601,7 +41601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41609,7 +41609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41617,7 +41617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref UInt32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41625,7 +41625,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameterIuiv")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.All pname, UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41633,7 +41633,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41641,7 +41641,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41649,7 +41649,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41657,7 +41657,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureParameteriv")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* param) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41666,7 +41666,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage1D")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41675,7 +41675,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage1D")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41685,7 +41685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2D")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41695,7 +41695,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2D")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41706,7 +41706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2DMultisample")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41717,7 +41717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage2DMultisample")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41728,7 +41728,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3D")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41739,7 +41739,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3D")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41751,7 +41751,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3DMultisample")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41763,7 +41763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureStorage3DMultisample")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41775,7 +41775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage1D")] [CLSCompliant(false)] - public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41789,7 +41789,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41803,7 +41803,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41817,7 +41817,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41831,7 +41831,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41843,7 +41843,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage1D")] [CLSCompliant(false)] - public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41857,7 +41857,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41871,7 +41871,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41885,7 +41885,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41899,7 +41899,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T6 pixels) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41913,7 +41913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage2D")] [CLSCompliant(false)] - public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41929,7 +41929,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41945,7 +41945,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41961,7 +41961,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41977,7 +41977,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -41991,7 +41991,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage2D")] [CLSCompliant(false)] - public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42007,7 +42007,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42023,7 +42023,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42039,7 +42039,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42055,7 +42055,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42071,7 +42071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage3D")] [CLSCompliant(false)] - public static void TextureSubImage3D(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 pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(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 pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42089,7 +42089,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(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[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42107,7 +42107,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(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[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42125,7 +42125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(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[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42143,7 +42143,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(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 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42159,7 +42159,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTextureSubImage3D")] [CLSCompliant(false)] - public static void TextureSubImage3D(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 pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(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 pixels) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42177,7 +42177,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(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[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42195,7 +42195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(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[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42213,7 +42213,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(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[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42231,7 +42231,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(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 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_view|VERSION_4_3] /// Initialize a texture as a data alias of another texture's data store @@ -42262,7 +42262,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_texture_view|VERSION_4_3] /// Initialize a texture as a data alias of another texture's data store @@ -42293,7 +42293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42301,7 +42301,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferBase")] [CLSCompliant(false)] - public static void TransformFeedbackBufferBase(Int32 xfb, Int32 index, Int32 buffer) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferBase(Int32 xfb, Int32 index, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42309,7 +42309,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferBase")] [CLSCompliant(false)] - public static void TransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferBase(UInt32 xfb, UInt32 index, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42319,7 +42319,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42329,7 +42329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(Int32 xfb, Int32 index, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42339,7 +42339,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -42349,7 +42349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glTransformFeedbackBufferRange")] [CLSCompliant(false)] - public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TransformFeedbackBufferRange(UInt32 xfb, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify values to record in transform feedback buffers @@ -42368,7 +42368,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, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(Int32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify values to record in transform feedback buffers @@ -42387,7 +42387,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")] [CLSCompliant(false)] - public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new NotImplementedException(); } + public static void TransformFeedbackVaryings(UInt32 program, Int32 count, [CountAttribute(Parameter = "count")] String[] varyings, OpenTK.Graphics.OpenGL4.TransformFeedbackMode bufferMode) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42399,7 +42399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform1d")] - public static void Uniform1(Int32 location, Double x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42415,7 +42415,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, [CountAttribute(Parameter = "count*1")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42431,7 +42431,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, [CountAttribute(Parameter = "count*1")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42447,7 +42447,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*1")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42459,7 +42459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1f")] - public static void Uniform1(Int32 location, Single v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42475,7 +42475,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, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42491,7 +42491,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, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42507,7 +42507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1fv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42519,7 +42519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1i")] - public static void Uniform1(Int32 location, Int32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42535,7 +42535,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, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42551,7 +42551,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, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42567,7 +42567,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform1iv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42580,7 +42580,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1ui")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt32 v0) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42596,7 +42596,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42612,7 +42612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42628,7 +42628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform1uiv")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42643,7 +42643,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform2d")] - public static void Uniform2(Int32 location, Double x, Double y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42659,7 +42659,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, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42675,7 +42675,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, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42691,7 +42691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42706,7 +42706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2f")] - public static void Uniform2(Int32 location, Single v0, Single v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42722,7 +42722,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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42738,7 +42738,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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42754,7 +42754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2fv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42769,7 +42769,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2i")] - public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42785,7 +42785,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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42801,7 +42801,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform2iv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42817,7 +42817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void Uniform2(Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42833,7 +42833,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42849,7 +42849,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -42865,7 +42865,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform2uiv")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42883,7 +42883,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform3d")] - public static void Uniform3(Int32 location, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42899,7 +42899,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, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42915,7 +42915,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, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -42931,7 +42931,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42949,7 +42949,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3f")] - public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42965,7 +42965,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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42981,7 +42981,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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -42997,7 +42997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3fv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43015,7 +43015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3i")] - public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43031,7 +43031,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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43047,7 +43047,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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43063,7 +43063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform3iv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43082,7 +43082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void Uniform3(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43098,7 +43098,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43114,7 +43114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43130,7 +43130,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform3uiv")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -43151,7 +43151,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "ARB_gpu_shader_fp64|VERSION_4_0", Version = "4.0", EntryPoint = "glUniform4d")] - public static void Uniform4(Int32 location, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -43167,7 +43167,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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -43183,7 +43183,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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// Specify the value of a uniform variable for the current program object @@ -43199,7 +43199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43220,7 +43220,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4f")] - public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43236,7 +43236,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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43252,7 +43252,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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43268,7 +43268,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4fv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43289,7 +43289,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4i")] - public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43305,7 +43305,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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43321,7 +43321,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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specify the value of a uniform variable for the current program object @@ -43337,7 +43337,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniform4iv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43359,7 +43359,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void Uniform4(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43375,7 +43375,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43391,7 +43391,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// Specify the value of a uniform variable for the current program object @@ -43407,7 +43407,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glUniform4uiv")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Assign a binding point to an active uniform block @@ -43423,7 +43423,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(); } + public static void UniformBlockBinding(Int32 program, Int32 uniformBlockIndex, Int32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v3.1 or ARB_uniform_buffer_object|VERSION_3_1] /// Assign a binding point to an active uniform block @@ -43439,7 +43439,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(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new NotImplementedException(); } + public static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43448,7 +43448,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43457,7 +43457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43466,7 +43466,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43475,7 +43475,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43484,7 +43484,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43493,7 +43493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43502,7 +43502,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43511,7 +43511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43520,7 +43520,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43529,7 +43529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43538,7 +43538,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43547,7 +43547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43556,7 +43556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43565,7 +43565,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43574,7 +43574,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43583,7 +43583,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43592,7 +43592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43601,7 +43601,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix2x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix2x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43610,7 +43610,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43619,7 +43619,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43628,7 +43628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43637,7 +43637,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43646,7 +43646,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43655,7 +43655,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43664,7 +43664,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43673,7 +43673,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43682,7 +43682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43691,7 +43691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43700,7 +43700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43709,7 +43709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43718,7 +43718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43727,7 +43727,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43736,7 +43736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43745,7 +43745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43754,7 +43754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43763,7 +43763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix3x4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix3x4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43772,7 +43772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43781,7 +43781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43790,7 +43790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43799,7 +43799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43808,7 +43808,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -43817,7 +43817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUniformMatrix4fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43826,7 +43826,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43835,7 +43835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43844,7 +43844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43853,7 +43853,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43862,7 +43862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43871,7 +43871,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x2fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x2(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43880,7 +43880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43889,7 +43889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_gpu_shader_fp64|VERSION_4_0] /// @@ -43898,7 +43898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43907,7 +43907,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43916,7 +43916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.1] /// @@ -43925,7 +43925,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "VERSION_2_1", Version = "2.1", EntryPoint = "glUniformMatrix4x3fv")] [CLSCompliant(false)] - public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void UniformMatrix4x3(Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -43941,7 +43941,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, [CountAttribute(Parameter = "count")] Int32[] indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -43957,7 +43957,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, [CountAttribute(Parameter = "count")] ref Int32 indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -43973,7 +43973,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32* indices) { throw new NotImplementedException(); } + public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] Int32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -43989,7 +43989,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, [CountAttribute(Parameter = "count")] UInt32[] indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -44005,7 +44005,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, [CountAttribute(Parameter = "count")] ref UInt32 indices) { throw new NotImplementedException(); } + public static void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 indices) { throw new BindingsNotRewrittenException(); } /// [requires: v4.0 or ARB_shader_subroutine|VERSION_4_0] /// Load active subroutine uniforms @@ -44021,24 +44021,24 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] UInt32* indices) { throw new NotImplementedException(); } + public static unsafe void UniformSubroutines(OpenTK.Graphics.OpenGL4.ShaderType shadertype, Int32 count, [CountAttribute(Parameter = "count")] UInt32* indices) { throw new BindingsNotRewrittenException(); } /// [requires: v1.5] /// [AutoGenerated(Category = "VERSION_1_5", Version = "1.5", EntryPoint = "glUnmapBuffer")] - public static bool UnmapBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target) { throw new NotImplementedException(); } + public static bool UnmapBuffer(OpenTK.Graphics.OpenGL4.BufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glUnmapNamedBuffer")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(Int32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glUnmapNamedBuffer")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Installs a program object as part of current rendering state @@ -44048,7 +44048,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(); } + public static void UseProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Installs a program object as part of current rendering state @@ -44058,7 +44058,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glUseProgram")] [CLSCompliant(false)] - public static void UseProgram(UInt32 program) { throw new NotImplementedException(); } + public static void UseProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind stages of a program object to a program pipeline @@ -44074,7 +44074,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(); } + public static void UseProgramStages(Int32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Bind stages of a program object to a program pipeline @@ -44090,7 +44090,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(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, OpenTK.Graphics.OpenGL4.ProgramStageMask stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Validates a program object @@ -44100,7 +44100,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(); } + public static void ValidateProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Validates a program object @@ -44110,7 +44110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glValidateProgram")] [CLSCompliant(false)] - public static void ValidateProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ValidateProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Validate a program pipeline object against current GL state @@ -44120,7 +44120,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(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_separate_shader_objects|VERSION_4_1] /// Validate a program pipeline object against current GL state @@ -44130,7 +44130,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(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44138,7 +44138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribBinding")] [CLSCompliant(false)] - public static void VertexArrayAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44146,7 +44146,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribBinding")] [CLSCompliant(false)] - public static void VertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44157,7 +44157,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44168,7 +44168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44178,7 +44178,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribIFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44188,7 +44188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribIFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44198,7 +44198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44208,7 +44208,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayAttribLFormat")] [CLSCompliant(false)] - public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44216,7 +44216,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayBindingDivisor")] [CLSCompliant(false)] - public static void VertexArrayBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44224,21 +44224,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayBindingDivisor")] [CLSCompliant(false)] - public static void VertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayElementBuffer")] [CLSCompliant(false)] - public static void VertexArrayElementBuffer(Int32 vaobj, Int32 buffer) { throw new NotImplementedException(); } + public static void VertexArrayElementBuffer(Int32 vaobj, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayElementBuffer")] [CLSCompliant(false)] - public static void VertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer) { throw new NotImplementedException(); } + public static void VertexArrayElementBuffer(UInt32 vaobj, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44248,7 +44248,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffer")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44258,7 +44258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffer")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44269,7 +44269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44280,7 +44280,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, ref Int32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44291,7 +44291,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static unsafe void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } + public static unsafe void VertexArrayVertexBuffers(Int32 vaobj, Int32 first, Int32 count, Int32* buffers, IntPtr* offsets, Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44302,7 +44302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32[] buffers, IntPtr[] offsets, Int32[] strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44313,7 +44313,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new NotImplementedException(); } + public static void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, ref UInt32 buffers, ref IntPtr offsets, ref Int32 strides) { throw new BindingsNotRewrittenException(); } /// [requires: v4.5 or ARB_direct_state_access|VERSION_4_5] /// @@ -44324,7 +44324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_direct_state_access|VERSION_4_5", Version = "4.5", EntryPoint = "glVertexArrayVertexBuffers")] [CLSCompliant(false)] - public static unsafe void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new NotImplementedException(); } + public static unsafe void VertexArrayVertexBuffers(UInt32 vaobj, UInt32 first, Int32 count, UInt32* buffers, IntPtr* offsets, Int32* strides) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44337,7 +44337,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(); } + public static void VertexAttrib1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44350,7 +44350,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1d")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44363,7 +44363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44376,7 +44376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44389,7 +44389,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(); } + public static void VertexAttrib1(Int32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44402,7 +44402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1f")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Single x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Single x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44415,7 +44415,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44428,7 +44428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44441,7 +44441,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(); } + public static void VertexAttrib1(Int32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44454,7 +44454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1s")] [CLSCompliant(false)] - public static void VertexAttrib1(UInt32 index, Int16 x) { throw new NotImplementedException(); } + public static void VertexAttrib1(UInt32 index, Int16 x) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44467,7 +44467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(Int32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44480,7 +44480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib1sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib1(UInt32 index, [CountAttribute(Count = 1)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44496,7 +44496,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(); } + public static void VertexAttrib2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44512,7 +44512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44525,7 +44525,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44538,7 +44538,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44551,7 +44551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44564,7 +44564,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44577,7 +44577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44590,7 +44590,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44606,7 +44606,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(); } + public static void VertexAttrib2(Int32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44622,7 +44622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib2(UInt32 index, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44635,7 +44635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44648,7 +44648,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44661,7 +44661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44674,7 +44674,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44687,7 +44687,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44700,7 +44700,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44716,7 +44716,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(); } + public static void VertexAttrib2(Int32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44732,7 +44732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib2(UInt32 index, Int16 x, Int16 y) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44745,7 +44745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44758,7 +44758,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44771,7 +44771,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(Int32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44784,7 +44784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44797,7 +44797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44810,7 +44810,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib2sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib2(UInt32 index, [CountAttribute(Count = 2)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44829,7 +44829,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(); } + public static void VertexAttrib3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44848,7 +44848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44861,7 +44861,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44874,7 +44874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44887,7 +44887,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44900,7 +44900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44913,7 +44913,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44926,7 +44926,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44945,7 +44945,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(); } + public static void VertexAttrib3(Int32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44964,7 +44964,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib3(UInt32 index, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44977,7 +44977,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -44990,7 +44990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45003,7 +45003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45016,7 +45016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45029,7 +45029,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45042,7 +45042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45061,7 +45061,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(); } + public static void VertexAttrib3(Int32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45080,7 +45080,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib3(UInt32 index, Int16 x, Int16 y, Int16 z) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45093,7 +45093,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45106,7 +45106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45119,7 +45119,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(Int32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45132,7 +45132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45145,7 +45145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45158,7 +45158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib3sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib3(UInt32 index, [CountAttribute(Count = 3)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45171,7 +45171,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45184,7 +45184,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45197,7 +45197,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4bv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45219,7 +45219,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(); } + public static void VertexAttrib4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45241,7 +45241,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45254,7 +45254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45267,7 +45267,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45280,7 +45280,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45293,7 +45293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45306,7 +45306,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45319,7 +45319,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45341,7 +45341,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(); } + public static void VertexAttrib4(Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45363,7 +45363,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib4(UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45376,7 +45376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45389,7 +45389,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45402,7 +45402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45415,7 +45415,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45428,7 +45428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45441,7 +45441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4fv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45454,7 +45454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45467,7 +45467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45480,7 +45480,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45493,7 +45493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45506,7 +45506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45519,112 +45519,112 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nbv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Niv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nsv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -45634,7 +45634,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib4N(Int32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// @@ -45644,91 +45644,91 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib4N(UInt32 index, Byte x, Byte y, Byte z, Byte w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nuiv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4Nusv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4N(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45750,7 +45750,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(); } + public static void VertexAttrib4(Int32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45772,7 +45772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttrib4(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45785,7 +45785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45798,7 +45798,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45811,7 +45811,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45824,7 +45824,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45837,7 +45837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45850,7 +45850,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45863,7 +45863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45876,7 +45876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45889,7 +45889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45902,7 +45902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45915,7 +45915,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45928,7 +45928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45941,7 +45941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45954,7 +45954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45967,7 +45967,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45980,7 +45980,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -45993,7 +45993,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Specifies the value of a generic vertex attribute @@ -46006,7 +46006,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttrib4usv")] [CLSCompliant(false)] - public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttrib4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Associate a vertex attribute and a vertex buffer binding @@ -46019,7 +46019,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(); } + public static void VertexAttribBinding(Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Associate a vertex attribute and a vertex buffer binding @@ -46032,7 +46032,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(UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexAttribBinding(UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -46045,7 +46045,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(); } + public static void VertexAttribDivisor(Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3] /// Modify the rate at which generic vertex attributes advance during instanced rendering @@ -46058,7 +46058,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "VERSION_3_3", Version = "3.3", EntryPoint = "glVertexAttribDivisor")] [CLSCompliant(false)] - public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexAttribDivisor(UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Specify the organization of vertex arrays @@ -46080,7 +46080,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(); } + public static void VertexAttribFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Specify the organization of vertex arrays @@ -46102,49 +46102,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribType type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribI1(Int32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1i")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, Int32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, Int32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(Int32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1ui")] [CLSCompliant(false)] - public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new NotImplementedException(); } + public static void VertexAttribI1(UInt32 index, UInt32 x) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 1] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI1uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI1(UInt32 index, [CountAttribute(Count = 1)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46152,7 +46152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI2(Int32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46160,49 +46160,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI2(UInt32 index, Int32 x, Int32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(Int32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46210,28 +46210,28 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI2(UInt32 index, UInt32 x, UInt32 y) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 2] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI2uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI2(UInt32 index, [CountAttribute(Count = 2)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46240,7 +46240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI3(Int32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46249,49 +46249,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI3(UInt32 index, Int32 x, Int32 y, Int32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(Int32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46300,49 +46300,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI3(UInt32 index, UInt32 x, UInt32 y, UInt32 z) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 3] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI3uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI3(UInt32 index, [CountAttribute(Count = 3)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref SByte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4bv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] SByte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46352,7 +46352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI4(Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46362,133 +46362,133 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI4(UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4iv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Int16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4sv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Int16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(Int32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref Byte v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4ubv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] Byte* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46498,49 +46498,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribI4(UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt32 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4uiv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt32* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new NotImplementedException(); } + public static void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] ref UInt16 v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// /// [length: 4] [AutoGenerated(Category = "VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribI4usv")] [CLSCompliant(false)] - public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribI4(UInt32 index, [CountAttribute(Count = 4)] UInt16* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -46549,7 +46549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribIFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -46558,7 +46558,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribIFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46568,7 +46568,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size,type,stride)] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46580,7 +46580,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46592,7 +46592,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46604,7 +46604,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46616,7 +46616,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46626,7 +46626,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size,type,stride)] [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46638,7 +46638,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46650,7 +46650,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46662,7 +46662,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.0] /// @@ -46674,35 +46674,35 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribIPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribIntegerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or 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(); } + public static void VertexAttribL1(Int32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or 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(UInt32 index, Double x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 1] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL1dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46710,7 +46710,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL2(Int32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46718,49 +46718,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL2(UInt32 index, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 2] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL2dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46769,7 +46769,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL3(Int32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46778,49 +46778,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL3(UInt32 index, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 3] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL3dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46830,7 +46830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL4(Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46840,49 +46840,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL4(UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Double v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// /// [length: 4] [AutoGenerated(Category = "ARB_vertex_attrib_64bit|VERSION_4_1", Version = "4.1", EntryPoint = "glVertexAttribL4dv")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Double* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -46891,7 +46891,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribLFormat(Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// @@ -46900,7 +46900,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribLFormat(UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46910,7 +46910,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: size] [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, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46922,7 +46922,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46934,7 +46934,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46946,7 +46946,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46958,7 +46958,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46968,7 +46968,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: size] [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, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [CountAttribute(Parameter = "size")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46980,7 +46980,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -46992,7 +46992,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -47004,7 +47004,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_vertex_attrib_64bit|VERSION_4_1] /// @@ -47016,7 +47016,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribLPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribDoubleType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47025,7 +47025,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47034,7 +47034,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47043,7 +47043,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP1(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47052,7 +47052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP1(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47061,7 +47061,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47070,7 +47070,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47079,7 +47079,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP2(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47088,7 +47088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP2(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47097,7 +47097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47106,7 +47106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47115,7 +47115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP3(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47124,7 +47124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP3(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47133,7 +47133,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47142,7 +47142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47151,7 +47151,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP4(Int32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// @@ -47160,7 +47160,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexAttribP4(UInt32 index, OpenTK.Graphics.OpenGL4.PackedPointerType type, bool normalized, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47185,7 +47185,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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47212,7 +47212,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47239,7 +47239,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47266,7 +47266,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47293,7 +47293,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47318,7 +47318,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47345,7 +47345,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47372,7 +47372,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47399,7 +47399,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T5[,,] pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v2.0] /// Define an array of generic vertex attribute data @@ -47426,7 +47426,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void VertexAttribPointer(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T5 pointer) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Modify the rate at which generic vertex attributes advance @@ -47439,7 +47439,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(); } + public static void VertexBindingDivisor(Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v4.3 or ARB_vertex_attrib_binding|VERSION_4_3] /// Modify the rate at which generic vertex attributes advance @@ -47452,91 +47452,91 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexBindingDivisor(UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP2(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP3(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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(); } + public static void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or 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, UInt32 value) { throw new NotImplementedException(); } + public static void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v3.3 or ARB_vertex_type_2_10_10_10_rev|VERSION_3_3] /// /// [length: 1] [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, [CountAttribute(Count = 1)] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void VertexP4(OpenTK.Graphics.OpenGL4.PackedPointerType type, [CountAttribute(Count = 1)] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: v1.0] /// Set the viewport @@ -47554,7 +47554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window. /// [AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glViewport")] - public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47570,7 +47570,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, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47586,7 +47586,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, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47602,7 +47602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(Int32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47618,7 +47618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47634,7 +47634,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new NotImplementedException(); } + public static void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set multiple viewports @@ -47650,7 +47650,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportArrayv")] [CLSCompliant(false)] - public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportArray(UInt32 first, Int32 count, [CountAttribute(Computed = "count")] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47672,7 +47672,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(); } + public static void ViewportIndexed(Int32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47694,7 +47694,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ViewportIndexed(UInt32 index, Single x, Single y, Single w, Single h) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47707,7 +47707,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, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47720,7 +47720,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, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47733,7 +47733,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(Int32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47746,7 +47746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47759,7 +47759,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new NotImplementedException(); } + public static void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: v4.1 or ARB_viewport_array|VERSION_4_1] /// Set a specified viewport @@ -47772,7 +47772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_viewport_array|VERSION_4_1", Version = "4.1", EntryPoint = "glViewportIndexedfv")] [CLSCompliant(false)] - public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new NotImplementedException(); } + public static unsafe void ViewportIndexed(UInt32 index, [CountAttribute(Count = 4)] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -47788,7 +47788,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, Int64 timeout) { throw new BindingsNotRewrittenException(); } /// [requires: v3.2 or ARB_sync|VERSION_3_2] /// Instruct the GL server to block until the specified sync object becomes signaled @@ -47804,7 +47804,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")] [CLSCompliant(false)] - public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); } + public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, UInt64 timeout) { throw new BindingsNotRewrittenException(); } public static partial class Ext { @@ -47812,13 +47812,13 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(Int32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveProgramEXT")] [CLSCompliant(false)] - public static void ActiveProgram(UInt32 program) { throw new NotImplementedException(); } + public static void ActiveProgram(UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -47831,7 +47831,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(Int32 pipeline, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Set the active program object for a program pipeline object @@ -47844,7 +47844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glActiveShaderProgramEXT")] [CLSCompliant(false)] - public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new NotImplementedException(); } + public static void ActiveShaderProgram(UInt32 pipeline, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47852,7 +47852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glBindMultiTextureEXT")] [CLSCompliant(false)] - public static void BindMultiTexture(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 texture) { throw new NotImplementedException(); } + public static void BindMultiTexture(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47860,7 +47860,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glBindMultiTextureEXT")] [CLSCompliant(false)] - public static void BindMultiTexture(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); } + public static void BindMultiTexture(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -47870,7 +47870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind a program pipeline to the current context @@ -47880,21 +47880,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glBindProgramPipelineEXT")] [CLSCompliant(false)] - public static void BindProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void BindProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCheckNamedFramebufferStatusEXT")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All CheckNamedFramebufferStatus(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47905,7 +47905,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47918,7 +47918,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47931,7 +47931,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47944,7 +47944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47957,7 +47957,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47967,7 +47967,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47979,7 +47979,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -47991,7 +47991,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48003,7 +48003,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48015,7 +48015,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48026,7 +48026,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48039,7 +48039,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48052,7 +48052,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48065,7 +48065,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48078,7 +48078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48088,7 +48088,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48100,7 +48100,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48112,7 +48112,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48124,7 +48124,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T4[,,] data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48136,7 +48136,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T4 data) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48149,7 +48149,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48164,7 +48164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48179,7 +48179,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48194,7 +48194,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48209,7 +48209,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48222,7 +48222,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48237,7 +48237,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48252,7 +48252,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48267,7 +48267,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48282,7 +48282,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48295,7 +48295,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48310,7 +48310,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48325,7 +48325,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48340,7 +48340,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48355,7 +48355,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48368,7 +48368,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48383,7 +48383,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48398,7 +48398,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48413,7 +48413,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48428,7 +48428,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48440,7 +48440,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48454,7 +48454,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48468,7 +48468,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48482,7 +48482,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48496,7 +48496,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48508,7 +48508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48522,7 +48522,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48536,7 +48536,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48550,7 +48550,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48564,7 +48564,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48577,7 +48577,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48592,7 +48592,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48607,7 +48607,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48622,7 +48622,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48637,7 +48637,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48650,7 +48650,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48665,7 +48665,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48680,7 +48680,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48695,7 +48695,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48710,7 +48710,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48723,7 +48723,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48738,7 +48738,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48753,7 +48753,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48768,7 +48768,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48783,7 +48783,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, Int32 format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48796,7 +48796,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48811,7 +48811,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48826,7 +48826,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48841,7 +48841,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48856,7 +48856,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48868,7 +48868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48882,7 +48882,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48896,7 +48896,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48910,7 +48910,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48924,7 +48924,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 offset, Int32 size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48936,7 +48936,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClearNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new NotImplementedException(); } + public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48950,7 +48950,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48964,7 +48964,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48978,7 +48978,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] T6[,,] data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -48992,12 +48992,12 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, IntPtr offset, IntPtr size, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type")] ref T6 data) where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glClientAttribDefaultEXT")] - public static void ClientAttribDefault(OpenTK.Graphics.OpenGL4.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void ClientAttribDefault(OpenTK.Graphics.OpenGL4.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49009,7 +49009,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] - public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49024,7 +49024,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49039,7 +49039,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49054,7 +49054,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49068,7 +49068,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage1DEXT")] public static void CompressedMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49081,7 +49081,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] - public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49097,7 +49097,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49113,7 +49113,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49129,7 +49129,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49144,7 +49144,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage2DEXT")] public static void CompressedMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49158,7 +49158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] - public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49175,7 +49175,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49192,7 +49192,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49209,7 +49209,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49225,7 +49225,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexImage3DEXT")] public static void CompressedMultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49237,7 +49237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] - public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49252,7 +49252,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49267,7 +49267,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49282,7 +49282,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49296,7 +49296,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage1DEXT")] public static void CompressedMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49310,7 +49310,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] - public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49327,7 +49327,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49344,7 +49344,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49361,7 +49361,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49377,7 +49377,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage2DEXT")] public static void CompressedMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49393,7 +49393,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] - public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49412,7 +49412,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49431,7 +49431,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49450,7 +49450,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49468,7 +49468,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedMultiTexSubImage3DEXT")] public static void CompressedMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49481,7 +49481,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49496,7 +49496,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49511,7 +49511,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49526,7 +49526,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49541,7 +49541,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49554,7 +49554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49569,7 +49569,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49584,7 +49584,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49599,7 +49599,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49614,7 +49614,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49628,7 +49628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49644,7 +49644,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49660,7 +49660,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49676,7 +49676,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49692,7 +49692,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49706,7 +49706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49722,7 +49722,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49738,7 +49738,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49754,7 +49754,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T8[,,] bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49770,7 +49770,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T8 bits) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49785,7 +49785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49802,7 +49802,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49819,7 +49819,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49836,7 +49836,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49853,7 +49853,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49868,7 +49868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49885,7 +49885,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49902,7 +49902,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49919,7 +49919,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49936,7 +49936,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49949,7 +49949,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49964,7 +49964,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49979,7 +49979,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -49994,7 +49994,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50009,7 +50009,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50022,7 +50022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50037,7 +50037,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50052,7 +50052,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50067,7 +50067,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T7[,,] bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50082,7 +50082,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T7 bits) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50097,7 +50097,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50114,7 +50114,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50131,7 +50131,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50148,7 +50148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50165,7 +50165,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50180,7 +50180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50197,7 +50197,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50214,7 +50214,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50231,7 +50231,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] T9[,,] bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50248,7 +50248,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "imageSize")] ref T9 bits) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50265,7 +50265,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(Int32 texture, 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(Int32 texture, 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50284,7 +50284,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50303,7 +50303,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50322,7 +50322,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50341,7 +50341,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(Int32 texture, 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, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50358,7 +50358,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: imageSize] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCompressedTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CompressedTextureSubImage3D(UInt32 texture, 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new NotImplementedException(); } + public static void CompressedTextureSubImage3D(UInt32 texture, 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, [CountAttribute(Parameter = "imageSize")] IntPtr bits) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50377,7 +50377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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, CountAttribute(Parameter = "imageSize")] T11[] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50396,7 +50396,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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, CountAttribute(Parameter = "imageSize")] T11[,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50415,7 +50415,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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, CountAttribute(Parameter = "imageSize")] T11[,,] bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50434,7 +50434,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CompressedTextureSubImage3D(UInt32 texture, 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, CountAttribute(Parameter = "imageSize")] ref T11 bits) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50446,7 +50446,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage1DEXT")] - public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyMultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50459,7 +50459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexImage2DEXT")] - public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyMultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50470,7 +50470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage1DEXT")] - public static void CopyMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50483,7 +50483,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage2DEXT")] - public static void CopyMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50497,7 +50497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyMultiTexSubImage3DEXT")] - public static void CopyMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyMultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50510,7 +50510,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50523,7 +50523,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50537,7 +50537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50551,7 +50551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); } + public static void CopyTextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50563,7 +50563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50575,7 +50575,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new NotImplementedException(); } + public static void CopyTextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50589,7 +50589,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50603,7 +50603,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50618,7 +50618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -50633,7 +50633,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glCopyTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void CopyTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void CopyTextureSubImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -50645,7 +50645,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of source code strings in the array strings. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, String @string) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, String @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Create a stand-alone program from an array of null-terminated source code strings @@ -50660,7 +50660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the address of an array of pointers to source code strings from which to create the program object. /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glCreateShaderProgramvEXT")] - public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new NotImplementedException(); } + public static Int32 CreateShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 count, [CountAttribute(Parameter = "count")] String[] strings) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50670,7 +50670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50680,7 +50680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipeline([CountAttribute(Parameter = "n")] UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50693,7 +50693,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50706,7 +50706,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50719,7 +50719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50732,7 +50732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50745,7 +50745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new NotImplementedException(); } + public static void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] ref UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Delete program pipeline objects @@ -50758,77 +50758,77 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glDeleteProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void DeleteProgramPipelines(Int32 n, [CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateiEXT")] [CLSCompliant(false)] - public static void DisableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateiEXT")] [CLSCompliant(false)] - public static void DisableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void DisableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableIndexedEXT")] [CLSCompliant(false)] - public static void DisableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableIndexedEXT")] [CLSCompliant(false)] - public static void DisableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void DisableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DisableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void DisableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayEXT")] [CLSCompliant(false)] - public static void DisableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new NotImplementedException(); } + public static void DisableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glDisableVertexArrayEXT")] [CLSCompliant(false)] - public static void DisableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new NotImplementedException(); } + public static void DisableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a range of elements @@ -50846,7 +50846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawArraysInstancedEXT")] - public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawArraysInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 start, Int32 count, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50867,7 +50867,7 @@ namespace OpenTK.Graphics.OpenGL4 /// Specifies the number of instances of the specified range of indices to be rendered. /// [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] - public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new NotImplementedException(); } + public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [CountAttribute(Computed = "count,type")] IntPtr indices, Int32 primcount) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50891,7 +50891,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50915,7 +50915,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50939,7 +50939,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] T3[,,] indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_draw_instanced] /// Draw multiple instances of a set of elements @@ -50962,7 +50962,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_draw_instanced", Version = "", EntryPoint = "glDrawElementsInstancedEXT")] public static void DrawElementsInstanced(OpenTK.Graphics.OpenGL4.PrimitiveType mode, Int32 count, OpenTK.Graphics.OpenGL4.DrawElementsType type, [InAttribute, OutAttribute, CountAttribute(Computed = "count,type")] ref T3 indices, Int32 primcount) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Enable or disable client-side capability @@ -50973,7 +50973,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateiEXT")] [CLSCompliant(false)] - public static void EnableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Enable or disable client-side capability @@ -50984,63 +50984,63 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateiEXT")] [CLSCompliant(false)] - public static void EnableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientState(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableClientStateIndexedEXT")] [CLSCompliant(false)] - public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new NotImplementedException(); } + public static void EnableClientStateIndexed(OpenTK.Graphics.OpenGL4.ArrayCap array, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableIndexedEXT")] [CLSCompliant(false)] - public static void EnableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableIndexedEXT")] [CLSCompliant(false)] - public static void EnableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static void EnableIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void EnableVertexArrayAttrib(Int32 vaobj, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayAttribEXT")] [CLSCompliant(false)] - public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new NotImplementedException(); } + public static void EnableVertexArrayAttrib(UInt32 vaobj, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayEXT")] [CLSCompliant(false)] - public static void EnableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new NotImplementedException(); } + public static void EnableVertexArray(Int32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glEnableVertexArrayEXT")] [CLSCompliant(false)] - public static void EnableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new NotImplementedException(); } + public static void EnableVertexArray(UInt32 vaobj, OpenTK.Graphics.OpenGL4.EnableCap array) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51048,7 +51048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51056,7 +51056,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51064,7 +51064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51072,21 +51072,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFlushMappedNamedBufferRangeEXT")] [CLSCompliant(false)] - public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new NotImplementedException(); } + public static void FlushMappedNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBufferEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.DrawBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51094,7 +51094,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51102,7 +51102,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51110,7 +51110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void FramebufferDrawBuffers(Int32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51118,7 +51118,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode[] bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode[] bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51126,7 +51126,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBufferMode bufs) { throw new NotImplementedException(); } + public static void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] ref OpenTK.Graphics.OpenGL4.DrawBufferMode bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51134,48 +51134,48 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: n] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferDrawBuffersEXT")] [CLSCompliant(false)] - public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode* bufs) { throw new NotImplementedException(); } + public static unsafe void FramebufferDrawBuffers(UInt32 framebuffer, Int32 n, [CountAttribute(Parameter = "n")] OpenTK.Graphics.OpenGL4.DrawBufferMode* bufs) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferReadBufferEXT")] [CLSCompliant(false)] - public static void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferReadBuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glFramebufferReadBufferEXT")] [CLSCompliant(false)] - public static void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode mode) { throw new NotImplementedException(); } + public static void FramebufferReadBuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ReadBufferMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateMultiTexMipmapEXT")] - public static void GenerateMultiTexMipmap(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateMultiTexMipmap(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGenerateTextureMipmapEXT")] [CLSCompliant(false)] - public static void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new NotImplementedException(); } + public static void GenerateTextureMipmap(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static Int32 GenProgramPipeline() { throw new NotImplementedException(); } + public static Int32 GenProgramPipeline() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51188,7 +51188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51201,7 +51201,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out Int32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51214,7 +51214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] Int32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51227,7 +51227,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32[] pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51240,7 +51240,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new NotImplementedException(); } + public static void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] out UInt32 pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Reserve program pipeline object names @@ -51253,7 +51253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGenProgramPipelinesEXT")] [CLSCompliant(false)] - public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new NotImplementedException(); } + public static unsafe void GenProgramPipelines(Int32 n, [OutAttribute, CountAttribute(Parameter = "n")] UInt32* pipelines) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51261,7 +51261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51269,7 +51269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51277,7 +51277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51285,7 +51285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51293,7 +51293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new NotImplementedException(); } + public static void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out bool data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51301,7 +51301,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetBooleanIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new NotImplementedException(); } + public static unsafe void GetBooleanIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] bool* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51309,7 +51309,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] - public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51320,7 +51320,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51331,7 +51331,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51342,7 +51342,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51352,7 +51352,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedMultiTexImageEXT")] public static void GetCompressedMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51361,7 +51361,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51372,7 +51372,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51383,7 +51383,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51394,7 +51394,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51405,7 +51405,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51414,7 +51414,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target,lod)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetCompressedTextureImageEXT")] [CLSCompliant(false)] - public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new NotImplementedException(); } + public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [OutAttribute, CountAttribute(Computed = "target,lod")] IntPtr img) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51425,7 +51425,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51436,7 +51436,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51447,7 +51447,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] T3[,,] img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51458,7 +51458,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetCompressedTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 lod, [InAttribute, OutAttribute, CountAttribute(Computed = "target,lod")] ref T3 img) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51466,7 +51466,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51474,7 +51474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51482,7 +51482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51490,7 +51490,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51498,7 +51498,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51506,7 +51506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoublei_vEXT")] [CLSCompliant(false)] - public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetDouble(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51514,7 +51514,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51522,7 +51522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51530,7 +51530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51538,7 +51538,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51546,7 +51546,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new NotImplementedException(); } + public static void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Double data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51554,7 +51554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetDoubleIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new NotImplementedException(); } + public static unsafe void GetDoubleIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Double* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51562,7 +51562,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51570,7 +51570,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51578,7 +51578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51586,7 +51586,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51594,7 +51594,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51602,7 +51602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloati_vEXT")] [CLSCompliant(false)] - public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetFloat(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51610,7 +51610,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51618,7 +51618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51626,7 +51626,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51634,7 +51634,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51642,7 +51642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new NotImplementedException(); } + public static void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Single data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51650,7 +51650,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFloatIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new NotImplementedException(); } + public static unsafe void GetFloatIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Single* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51666,7 +51666,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51682,7 +51682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51698,7 +51698,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51714,7 +51714,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51730,7 +51730,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Retrieve a named parameter from a framebuffer @@ -51746,7 +51746,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51754,7 +51754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51762,7 +51762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51770,7 +51770,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, Int32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51778,7 +51778,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32[] data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51786,7 +51786,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new NotImplementedException(); } + public static void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] out Int32 data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51794,7 +51794,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetIntegerIndexedvEXT")] [CLSCompliant(false)] - public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new NotImplementedException(); } + public static unsafe void GetIntegerIndexed(OpenTK.Graphics.OpenGL4.GetIndexedPName target, UInt32 index, [OutAttribute, CountAttribute(Computed = "target")] Int32* data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51803,7 +51803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51812,7 +51812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51821,7 +51821,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51830,7 +51830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51839,7 +51839,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51848,7 +51848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexEnvivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51857,7 +51857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51866,7 +51866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51875,7 +51875,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGendvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51884,7 +51884,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51893,7 +51893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51902,7 +51902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51911,7 +51911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51920,7 +51920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51929,7 +51929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexGenivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51939,7 +51939,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] - public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51952,7 +51952,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51965,7 +51965,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51978,7 +51978,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -51990,7 +51990,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexImageEXT")] public static void GetMultiTexImage(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52000,7 +52000,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52010,7 +52010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52020,7 +52020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52030,7 +52030,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52040,7 +52040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52050,7 +52050,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexLevelParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52059,7 +52059,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52068,7 +52068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52077,7 +52077,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52086,7 +52086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52095,7 +52095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52104,7 +52104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52113,7 +52113,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52122,7 +52122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52131,7 +52131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52140,7 +52140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52149,7 +52149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52158,7 +52158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetMultiTexParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetMultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52166,7 +52166,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52174,7 +52174,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52182,7 +52182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52191,7 +52191,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52200,7 +52200,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52209,7 +52209,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52217,7 +52217,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52225,7 +52225,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52233,7 +52233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52242,7 +52242,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52251,7 +52251,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52260,7 +52260,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52268,7 +52268,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52278,7 +52278,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52288,7 +52288,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52298,7 +52298,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52308,7 +52308,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52317,7 +52317,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52328,7 +52328,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52339,7 +52339,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52350,7 +52350,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52361,7 +52361,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52369,7 +52369,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52379,7 +52379,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52389,7 +52389,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52399,7 +52399,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52409,7 +52409,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferPointer pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52418,7 +52418,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferPointervEXT")] [CLSCompliant(false)] - public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52429,7 +52429,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52440,7 +52440,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52451,7 +52451,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52462,7 +52462,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferPointer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52471,7 +52471,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52482,7 +52482,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52493,7 +52493,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52504,7 +52504,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52515,7 +52515,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52524,7 +52524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52535,7 +52535,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52546,7 +52546,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52557,7 +52557,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52568,7 +52568,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52577,7 +52577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52588,7 +52588,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52599,7 +52599,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52610,7 +52610,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52621,7 +52621,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52630,7 +52630,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute, CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52641,7 +52641,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52652,7 +52652,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52663,7 +52663,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52674,7 +52674,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52683,7 +52683,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52692,7 +52692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52701,7 +52701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52710,7 +52710,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52719,7 +52719,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52728,7 +52728,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferAttachmentParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52736,7 +52736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52744,7 +52744,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52752,7 +52752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52760,7 +52760,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52768,7 +52768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52776,7 +52776,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedFramebufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52785,7 +52785,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52794,7 +52794,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52803,7 +52803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52812,7 +52812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgram(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.ProgramProperty pname, [OutAttribute, CountAttribute(Count = 1)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52821,7 +52821,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52830,7 +52830,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52839,7 +52839,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52848,7 +52848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52857,7 +52857,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52866,7 +52866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterdvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52875,7 +52875,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52884,7 +52884,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52893,7 +52893,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52902,7 +52902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52911,7 +52911,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52920,7 +52920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameter(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52929,7 +52929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52938,7 +52938,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52947,7 +52947,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52956,7 +52956,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52965,7 +52965,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52974,7 +52974,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52983,7 +52983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -52992,7 +52992,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53001,7 +53001,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramLocalParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedProgramLocalParameterI(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53010,7 +53010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(program,pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] [CLSCompliant(false)] - public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53021,7 +53021,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53032,7 +53032,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53043,7 +53043,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53054,7 +53054,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53063,7 +53063,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(program,pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedProgramStringEXT")] [CLSCompliant(false)] - public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new NotImplementedException(); } + public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "program,pname")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53074,7 +53074,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53085,7 +53085,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53096,7 +53096,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] T3[,,] @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53107,7 +53107,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetNamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Computed = "program,pname")] ref T3 @string) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53115,7 +53115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53123,7 +53123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53131,7 +53131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53139,7 +53139,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53147,7 +53147,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53155,7 +53155,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetNamedRenderbufferParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedRenderbufferParameter(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -53177,7 +53177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -53199,7 +53199,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -53221,7 +53221,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// Retrieve the label of a named object identified within a namespace @@ -53243,7 +53243,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glGetObjectLabelEXT")] [CLSCompliant(false)] - public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53251,7 +53251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53261,7 +53261,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53271,7 +53271,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53281,7 +53281,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53291,7 +53291,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53299,7 +53299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointeri_vEXT")] [CLSCompliant(false)] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53309,7 +53309,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53319,7 +53319,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53329,7 +53329,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53339,7 +53339,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 @params) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53347,7 +53347,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new NotImplementedException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53357,7 +53357,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53367,7 +53367,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53377,7 +53377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53387,7 +53387,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, Int32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53395,7 +53395,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetPointerIndexedvEXT")] [CLSCompliant(false)] - public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new NotImplementedException(); } + public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [OutAttribute, CountAttribute(Count = 1)] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53405,7 +53405,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53415,7 +53415,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53425,7 +53425,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53435,7 +53435,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointerIndexed(OpenTK.Graphics.OpenGL4.All target, UInt32 index, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 data) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -53454,7 +53454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -53473,7 +53473,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(Int32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -53492,7 +53492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve the info log string from a program pipeline object @@ -53511,7 +53511,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineInfoLogEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipelineInfoLog(UInt32 pipeline, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String infoLog) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53527,7 +53527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53543,7 +53543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53559,7 +53559,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(Int32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53575,7 +53575,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53591,7 +53591,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Retrieve properties of a program pipeline object @@ -53607,7 +53607,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glGetProgramPipelineivEXT")] [CLSCompliant(false)] - public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramPipeline(UInt32 pipeline, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53618,7 +53618,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] [CLSCompliant(false)] - public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53631,7 +53631,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53644,7 +53644,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53657,7 +53657,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53670,7 +53670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53681,7 +53681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(target,level,format,type)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureImageEXT")] [CLSCompliant(false)] - public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new NotImplementedException(); } + public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [OutAttribute, CountAttribute(Computed = "target,level,format,type")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53694,7 +53694,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53707,7 +53707,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53720,7 +53720,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] T5[,,] pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53733,7 +53733,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetTextureImage(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "target,level,format,type")] ref T5 pixels) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53743,7 +53743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53753,7 +53753,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53763,7 +53763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53773,7 +53773,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53783,7 +53783,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53793,7 +53793,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53803,7 +53803,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53813,7 +53813,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53823,7 +53823,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53833,7 +53833,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53843,7 +53843,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53853,7 +53853,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureLevelParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureLevelParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53862,7 +53862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53871,7 +53871,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53880,7 +53880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53889,7 +53889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53898,7 +53898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53907,7 +53907,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53916,7 +53916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53925,7 +53925,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53934,7 +53934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53943,7 +53943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53952,7 +53952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53961,7 +53961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53970,7 +53970,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53979,7 +53979,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53988,7 +53988,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -53997,7 +53997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54006,7 +54006,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54015,7 +54015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54024,7 +54024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54033,7 +54033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54042,7 +54042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetTextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.GetTextureParameter pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54051,7 +54051,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54060,7 +54060,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54069,7 +54069,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54078,7 +54078,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54087,7 +54087,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54096,7 +54096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegeri_vEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54104,7 +54104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54112,7 +54112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54120,7 +54120,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54128,7 +54128,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32[] param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54136,7 +54136,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new NotImplementedException(); } + public static void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] out Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54144,7 +54144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayIntegervEXT")] [CLSCompliant(false)] - public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new NotImplementedException(); } + public static unsafe void GetVertexArrayInteger(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] Int32* param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54153,7 +54153,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54164,7 +54164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54175,7 +54175,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54186,7 +54186,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54197,7 +54197,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, Int32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54206,7 +54206,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointeri_vEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54217,7 +54217,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54228,7 +54228,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54239,7 +54239,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T3[,,] param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54250,7 +54250,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] ref T3 param) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54258,7 +54258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54268,7 +54268,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54278,7 +54278,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54288,7 +54288,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54298,7 +54298,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(Int32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54306,7 +54306,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glGetVertexArrayPointervEXT")] [CLSCompliant(false)] - public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new NotImplementedException(); } + public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 1)] IntPtr param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54316,7 +54316,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54326,7 +54326,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54336,7 +54336,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] T2[,,] param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54346,27 +54346,27 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetVertexArrayPointer(UInt32 vaobj, OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute, CountAttribute(Count = 1)] ref T2 param) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glInsertEventMarkerEXT")] - public static void InsertEventMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void InsertEventMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] [CLSCompliant(false)] - public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, Int32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glIsEnabledIndexedEXT")] [CLSCompliant(false)] - public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new NotImplementedException(); } + public static bool IsEnabledIndexed(OpenTK.Graphics.OpenGL4.IndexedEnableCap target, UInt32 index) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -54376,7 +54376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Determine if a name corresponds to a program pipeline object @@ -54386,7 +54386,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glIsProgramPipelineEXT")] [CLSCompliant(false)] - public static bool IsProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static bool IsProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -54395,7 +54395,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.OpenGL4.All type, Int32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_label] /// @@ -54404,14 +54404,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_debug_label", Version = "", EntryPoint = "glLabelObjectEXT")] [CLSCompliant(false)] - public static void LabelObject(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 length, String label) { throw new NotImplementedException(); } + public static void LabelObject(OpenTK.Graphics.OpenGL4.All type, UInt32 @object, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54419,14 +54419,14 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(Int32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54434,7 +54434,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBuffer(UInt32 buffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54443,7 +54443,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54452,7 +54452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(Int32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54461,7 +54461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, Int32 length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54470,7 +54470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMapNamedBufferRangeEXT")] [CLSCompliant(false)] - public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new NotImplementedException(); } + public static IntPtr MapNamedBufferRange(UInt32 buffer, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL4.BufferAccessMask access) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54481,180 +54481,180 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixFrustumEXT")] - public static void MatrixFrustum(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void MatrixFrustum(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoaddEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadfEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadIdentityEXT")] - public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixLoadIdentity(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposedEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixLoadTransposefEXT")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultdEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultfEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Double m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposedEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Double* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// /// [length: 16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixMultTransposefEXT")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose(OpenTK.Graphics.OpenGL4.MatrixMode mode, [CountAttribute(Count = 16)] Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54665,17 +54665,17 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixOrthoEXT")] - public static void MatrixOrtho(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new NotImplementedException(); } + public static void MatrixOrtho(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPopEXT")] - public static void MatrixPop(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixPop(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixPushEXT")] - public static void MatrixPush(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new NotImplementedException(); } + public static void MatrixPush(OpenTK.Graphics.OpenGL4.MatrixMode mode) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54684,7 +54684,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatedEXT")] - public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double angle, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54693,7 +54693,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixRotatefEXT")] - public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixRotate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single angle, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54701,7 +54701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScaledEXT")] - public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54709,7 +54709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixScalefEXT")] - public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixScale(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54717,7 +54717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatedEXT")] - public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new NotImplementedException(); } + public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54725,7 +54725,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMatrixTranslatefEXT")] - public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new NotImplementedException(); } + public static void MatrixTranslate(OpenTK.Graphics.OpenGL4.MatrixMode mode, Single x, Single y, Single z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54734,7 +54734,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54743,7 +54743,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexBufferEXT")] [CLSCompliant(false)] - public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void MultiTexBuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.All internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54752,7 +54752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(size,type,stride)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] - public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new NotImplementedException(); } + public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [CountAttribute(Computed = "size,type,stride")] IntPtr pointer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54764,7 +54764,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54776,7 +54776,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54788,7 +54788,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] T4[,,] pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54799,7 +54799,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexCoordPointerEXT")] public static void MultiTexCoordPointer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute, CountAttribute(Computed = "size,type,stride")] ref T4 pointer) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54807,7 +54807,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfEXT")] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54816,7 +54816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54825,7 +54825,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54833,7 +54833,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnviEXT")] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54842,7 +54842,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvivEXT")] [CLSCompliant(false)] - public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54851,7 +54851,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexEnvivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexEnv(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureEnvTarget target, OpenTK.Graphics.OpenGL4.TextureEnvParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54859,7 +54859,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendEXT")] - public static void MultiTexGend(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Double param) { throw new NotImplementedException(); } + public static void MultiTexGend(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Double param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54868,7 +54868,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54877,7 +54877,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54886,7 +54886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGendvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54894,7 +54894,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfEXT")] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54903,7 +54903,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfvEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54912,7 +54912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54920,7 +54920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGeniEXT")] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54929,7 +54929,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenivEXT")] [CLSCompliant(false)] - public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54938,7 +54938,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexGenivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureCoordName coord, OpenTK.Graphics.OpenGL4.TextureGenParameter pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54951,7 +54951,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] - public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54967,7 +54967,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54983,7 +54983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -54999,7 +54999,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55014,7 +55014,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage1DEXT")] public static void MultiTexImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55028,7 +55028,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] - public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55045,7 +55045,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55062,7 +55062,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55079,7 +55079,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55095,7 +55095,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage2DEXT")] public static void MultiTexImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55110,7 +55110,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] - public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55128,7 +55128,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55146,7 +55146,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55164,7 +55164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55181,7 +55181,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexImage3DEXT")] public static void MultiTexImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55189,7 +55189,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfEXT")] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55198,7 +55198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55207,7 +55207,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55215,7 +55215,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameteriEXT")] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55224,7 +55224,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55233,7 +55233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55242,7 +55242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55251,7 +55251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55260,7 +55260,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55269,7 +55269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameterI(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55278,7 +55278,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterivEXT")] [CLSCompliant(false)] - public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55287,7 +55287,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexParameterivEXT")] [CLSCompliant(false)] - public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void MultiTexParameter(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55295,7 +55295,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")] [CLSCompliant(false)] - public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55303,7 +55303,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexRenderbufferEXT")] [CLSCompliant(false)] - public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void MultiTexRenderbuffer(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55315,7 +55315,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] - public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55330,7 +55330,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55345,7 +55345,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55360,7 +55360,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55374,7 +55374,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage1DEXT")] public static void MultiTexSubImage1D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55388,7 +55388,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] - public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55405,7 +55405,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55422,7 +55422,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55439,7 +55439,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55455,7 +55455,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage2DEXT")] public static void MultiTexSubImage2D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55471,7 +55471,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] - public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55490,7 +55490,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55509,7 +55509,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55528,7 +55528,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55546,7 +55546,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glMultiTexSubImage3DEXT")] public static void MultiTexSubImage3D(OpenTK.Graphics.OpenGL4.TextureUnit texunit, 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55555,7 +55555,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55565,7 +55565,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55576,7 +55576,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55588,7 +55588,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55599,7 +55599,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55611,7 +55611,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55622,7 +55622,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55634,7 +55634,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55645,7 +55645,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55657,7 +55657,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55666,7 +55666,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55676,7 +55676,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(Int32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55687,7 +55687,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55699,7 +55699,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55710,7 +55710,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55722,7 +55722,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55733,7 +55733,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55745,7 +55745,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55756,7 +55756,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55768,7 +55768,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55777,7 +55777,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55787,7 +55787,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, Int32 size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55798,7 +55798,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55810,7 +55810,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55821,7 +55821,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55833,7 +55833,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55844,7 +55844,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55856,7 +55856,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55867,7 +55867,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55879,7 +55879,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55888,7 +55888,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55898,7 +55898,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferDataEXT")] [CLSCompliant(false)] - public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new NotImplementedException(); } + public static void NamedBufferData(UInt32 buffer, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55909,7 +55909,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55921,7 +55921,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55932,7 +55932,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55944,7 +55944,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55955,7 +55955,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55967,7 +55967,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55978,7 +55978,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferUsageHint usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -55990,7 +55990,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferData(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess usage) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -55999,7 +55999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -56008,7 +56008,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(Int32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -56017,7 +56017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, Int32 size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: ARB_sparse_buffer] /// @@ -56026,7 +56026,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "ARB_sparse_buffer", Version = "", EntryPoint = "glNamedBufferPageCommitmentEXT")] [CLSCompliant(false)] - public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new NotImplementedException(); } + public static void NamedBufferPageCommitment(UInt32 buffer, IntPtr offset, IntPtr size, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56035,7 +56035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56045,7 +56045,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56055,7 +56055,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56066,7 +56066,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56078,7 +56078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56090,7 +56090,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56101,7 +56101,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56113,7 +56113,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56125,7 +56125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56136,7 +56136,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56148,7 +56148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56160,7 +56160,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56171,7 +56171,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56183,7 +56183,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56195,7 +56195,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56204,7 +56204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56214,7 +56214,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56224,7 +56224,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(Int32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, Int32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56235,7 +56235,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56247,7 +56247,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56259,7 +56259,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56270,7 +56270,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56282,7 +56282,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56294,7 +56294,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56305,7 +56305,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56317,7 +56317,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56329,7 +56329,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56340,7 +56340,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56352,7 +56352,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56364,7 +56364,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(Int32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, Int32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56373,7 +56373,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56383,7 +56383,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56393,7 +56393,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, Int32 size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56404,7 +56404,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56416,7 +56416,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56428,7 +56428,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56439,7 +56439,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56451,7 +56451,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56463,7 +56463,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56474,7 +56474,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56486,7 +56486,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56498,7 +56498,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56509,7 +56509,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56521,7 +56521,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56533,7 +56533,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, Int32 size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56542,7 +56542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56552,7 +56552,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56562,7 +56562,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferStorageEXT")] [CLSCompliant(false)] - public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new NotImplementedException(); } + public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [CountAttribute(Parameter = "size")] IntPtr data, UInt32 flags) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56573,7 +56573,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56585,7 +56585,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56597,7 +56597,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56608,7 +56608,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56620,7 +56620,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56632,7 +56632,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56643,7 +56643,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56655,7 +56655,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56667,7 +56667,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] T2[,,] data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56678,7 +56678,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.BufferStorageFlags flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56690,7 +56690,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56702,7 +56702,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferStorage(UInt32 buffer, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Parameter = "size")] ref T2 data, UInt32 flags) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56711,7 +56711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56722,7 +56722,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56733,7 +56733,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56744,7 +56744,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56755,7 +56755,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56764,7 +56764,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56775,7 +56775,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56786,7 +56786,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56797,7 +56797,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56808,7 +56808,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(Int32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56817,7 +56817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56828,7 +56828,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56839,7 +56839,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56850,7 +56850,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56861,7 +56861,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, Int32 size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56870,7 +56870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(size)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new NotImplementedException(); } + public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [CountAttribute(Computed = "size")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56881,7 +56881,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56892,7 +56892,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56903,7 +56903,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] T3[,,] data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56914,7 +56914,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedBufferSubData(UInt32 buffer, IntPtr offset, IntPtr size, [InAttribute, OutAttribute, CountAttribute(Computed = "size")] ref T3 data) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56924,7 +56924,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56934,7 +56934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void NamedCopyBufferSubData(Int32 readBuffer, Int32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56944,7 +56944,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedCopyBufferSubDataEXT")] [CLSCompliant(false)] - public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new NotImplementedException(); } + public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56954,7 +56954,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void NamedCopyBufferSubData(UInt32 readBuffer, UInt32 writeBuffer, IntPtr readOffset, IntPtr writeOffset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56963,7 +56963,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56971,7 +56971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56980,7 +56980,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56989,7 +56989,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -56997,7 +56997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57006,7 +57006,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferParameteriEXT")] [CLSCompliant(false)] - public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void NamedFramebufferParameter(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57015,7 +57015,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57024,7 +57024,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferRenderbufferEXT")] [CLSCompliant(false)] - public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void NamedFramebufferRenderbuffer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57034,7 +57034,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture1D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57044,7 +57044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture1DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture1D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57054,7 +57054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture2D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57064,7 +57064,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture2DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture2D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57075,7 +57075,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture3D(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, Int32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57086,7 +57086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTexture3DEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture3D(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL4.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57095,7 +57095,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57104,7 +57104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new NotImplementedException(); } + public static void NamedFramebufferTexture(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57114,7 +57114,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureFace(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57124,7 +57124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureFaceEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureFace(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL4.TextureTarget face) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57134,7 +57134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(Int32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57144,7 +57144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedFramebufferTextureLayerEXT")] [CLSCompliant(false)] - public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new NotImplementedException(); } + public static void NamedFramebufferTextureLayer(UInt32 framebuffer, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57156,7 +57156,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57168,7 +57168,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Double x, Double y, Double z, Double w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57177,7 +57177,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57186,7 +57186,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57195,7 +57195,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57204,7 +57204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Double[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57213,7 +57213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Double @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57222,7 +57222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4dvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Double* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57234,7 +57234,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57246,7 +57246,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Single x, Single y, Single z, Single w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Single x, Single y, Single z, Single w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57255,7 +57255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57264,7 +57264,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57273,7 +57273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57282,7 +57282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57291,7 +57291,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57300,7 +57300,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameter4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameter4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57312,7 +57312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57324,7 +57324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4iEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57333,7 +57333,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57342,7 +57342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57351,7 +57351,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57360,7 +57360,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57369,7 +57369,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57378,7 +57378,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57390,7 +57390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uiEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57399,7 +57399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57408,7 +57408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57417,7 +57417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameterI4uivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameterI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, [CountAttribute(Count = 4)] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57427,7 +57427,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57437,7 +57437,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57447,7 +57447,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameters4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57457,7 +57457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57467,7 +57467,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57477,7 +57477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParameters4fvEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParameters4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57487,7 +57487,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57497,7 +57497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57507,7 +57507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(Int32 program, OpenTK.Graphics.OpenGL4.All target, Int32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57517,7 +57517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57527,7 +57527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57537,7 +57537,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4ivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57547,7 +57547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57557,7 +57557,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57567,7 +57567,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramLocalParametersI4uivEXT")] [CLSCompliant(false)] - public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void NamedProgramLocalParametersI4(UInt32 program, OpenTK.Graphics.OpenGL4.All target, UInt32 index, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57577,7 +57577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: len] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] [CLSCompliant(false)] - public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57589,7 +57589,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57601,7 +57601,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57613,7 +57613,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57625,7 +57625,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(Int32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T4 @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57635,7 +57635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: len] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedProgramStringEXT")] [CLSCompliant(false)] - public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new NotImplementedException(); } + public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [CountAttribute(Parameter = "len")] IntPtr @string) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57647,7 +57647,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57659,7 +57659,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57671,7 +57671,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] T4[,,] @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57683,7 +57683,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void NamedProgramString(UInt32 program, OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All format, Int32 len, [InAttribute, OutAttribute, CountAttribute(Parameter = "len")] ref T4 @string) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57693,7 +57693,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57703,7 +57703,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57712,7 +57712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(Int32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57722,7 +57722,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57732,7 +57732,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57741,7 +57741,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorage(UInt32 renderbuffer, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57752,7 +57752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(Int32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57763,7 +57763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisampleCoverage(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57774,7 +57774,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57785,7 +57785,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57795,7 +57795,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(Int32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57806,7 +57806,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57817,7 +57817,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -57827,18 +57827,18 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glNamedRenderbufferStorageMultisampleEXT")] [CLSCompliant(false)] - public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void NamedRenderbufferStorageMultisample(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL4.RenderbufferStorage internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_polygon_offset_clamp] /// /// /// [AutoGenerated(Category = "EXT_polygon_offset_clamp", Version = "", EntryPoint = "glPolygonOffsetClampEXT")] - public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new NotImplementedException(); } + public static void PolygonOffsetClamp(Single factor, Single units, Single clamp) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPopGroupMarkerEXT")] - public static void PopGroupMarker() { throw new NotImplementedException(); } + public static void PopGroupMarker() { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -57854,7 +57854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Specify a parameter for a program object @@ -57870,7 +57870,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")] [CLSCompliant(false)] - public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new NotImplementedException(); } + public static void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL4.AssemblyProgramParameterArb pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57886,7 +57886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Double x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57902,7 +57902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Double x) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57921,7 +57921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57940,7 +57940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57959,7 +57959,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57978,7 +57978,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -57997,7 +57997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58016,7 +58016,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform1dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58032,7 +58032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58048,7 +58048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Single v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58067,7 +58067,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58086,7 +58086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58105,7 +58105,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58124,7 +58124,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58143,7 +58143,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58162,7 +58162,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58178,7 +58178,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58194,7 +58194,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58213,7 +58213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58232,7 +58232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58251,7 +58251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58270,7 +58270,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58289,7 +58289,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58308,7 +58308,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58324,7 +58324,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt32 v0) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58343,7 +58343,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58362,7 +58362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58381,7 +58381,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58400,7 +58400,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58419,7 +58419,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Double x, Double y) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58438,7 +58438,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58457,7 +58457,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58476,7 +58476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58495,7 +58495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58514,7 +58514,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58533,7 +58533,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58552,7 +58552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58571,7 +58571,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Single v0, Single v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58590,7 +58590,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58609,7 +58609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58628,7 +58628,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58647,7 +58647,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58666,7 +58666,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58685,7 +58685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58704,7 +58704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58723,7 +58723,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 v0, Int32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58742,7 +58742,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58761,7 +58761,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58780,7 +58780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58799,7 +58799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58818,7 +58818,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt32 v0, UInt32 v1) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58837,7 +58837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58856,7 +58856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -58875,7 +58875,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58897,7 +58897,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58919,7 +58919,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Double x, Double y, Double z) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58938,7 +58938,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58957,7 +58957,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58976,7 +58976,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -58995,7 +58995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59014,7 +59014,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59033,7 +59033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59055,7 +59055,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59077,7 +59077,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Single v0, Single v1, Single v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59096,7 +59096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59115,7 +59115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59134,7 +59134,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59153,7 +59153,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59172,7 +59172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59191,7 +59191,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59213,7 +59213,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59235,7 +59235,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59254,7 +59254,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59273,7 +59273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59292,7 +59292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59311,7 +59311,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59330,7 +59330,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59349,7 +59349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59371,7 +59371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59390,7 +59390,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59409,7 +59409,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59428,7 +59428,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59453,7 +59453,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59478,7 +59478,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Double x, Double y, Double z, Double w) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59497,7 +59497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59516,7 +59516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59535,7 +59535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59554,7 +59554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59573,7 +59573,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// Specify the value of a uniform variable for a specified program object @@ -59592,7 +59592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniform4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59617,7 +59617,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59642,7 +59642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59661,7 +59661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59680,7 +59680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59699,7 +59699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59718,7 +59718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59737,7 +59737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59756,7 +59756,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59781,7 +59781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59806,7 +59806,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59825,7 +59825,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59844,7 +59844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59863,7 +59863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59882,7 +59882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59901,7 +59901,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59920,7 +59920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59945,7 +59945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59964,7 +59964,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -59983,7 +59983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt32 value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// Specify the value of a uniform variable for a specified program object @@ -60002,7 +60002,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt32* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60012,7 +60012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60022,7 +60022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60032,7 +60032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60042,7 +60042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60052,7 +60052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60062,7 +60062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60072,7 +60072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60082,7 +60082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60092,7 +60092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60102,7 +60102,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60112,7 +60112,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60122,7 +60122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*4] [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, [CountAttribute(Parameter = "count*4")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*4")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60132,7 +60132,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60142,7 +60142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60152,7 +60152,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60162,7 +60162,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60172,7 +60172,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60182,7 +60182,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60192,7 +60192,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60202,7 +60202,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60212,7 +60212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60222,7 +60222,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60232,7 +60232,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60242,7 +60242,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60252,7 +60252,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60262,7 +60262,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60272,7 +60272,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60282,7 +60282,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60292,7 +60292,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60302,7 +60302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix2x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60312,7 +60312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60322,7 +60322,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60332,7 +60332,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60342,7 +60342,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60352,7 +60352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60362,7 +60362,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix2x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60372,7 +60372,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60382,7 +60382,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60392,7 +60392,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60402,7 +60402,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60412,7 +60412,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60422,7 +60422,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60432,7 +60432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60442,7 +60442,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60452,7 +60452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60462,7 +60462,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60472,7 +60472,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60482,7 +60482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*9] [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, [CountAttribute(Parameter = "count*9")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*9")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60492,7 +60492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60502,7 +60502,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60512,7 +60512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60522,7 +60522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60532,7 +60532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60542,7 +60542,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60552,7 +60552,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60562,7 +60562,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60572,7 +60572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60582,7 +60582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60592,7 +60592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60602,7 +60602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*6] [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, [CountAttribute(Parameter = "count*6")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*6")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60612,7 +60612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60622,7 +60622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60632,7 +60632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60642,7 +60642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60652,7 +60652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60662,7 +60662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix3x4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60672,7 +60672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60682,7 +60682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60692,7 +60692,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60702,7 +60702,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60712,7 +60712,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60722,7 +60722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix3x4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60732,7 +60732,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60742,7 +60742,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60752,7 +60752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60762,7 +60762,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60772,7 +60772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60782,7 +60782,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60792,7 +60792,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60802,7 +60802,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60812,7 +60812,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60822,7 +60822,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60832,7 +60832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects|EXT_separate_shader_objects] /// @@ -60842,7 +60842,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*16] [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, [CountAttribute(Parameter = "count*16")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*16")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60852,7 +60852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60862,7 +60862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60872,7 +60872,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60882,7 +60882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60892,7 +60892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60902,7 +60902,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x2dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60912,7 +60912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60922,7 +60922,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60932,7 +60932,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60942,7 +60942,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60952,7 +60952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -60962,7 +60962,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*8] [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, [CountAttribute(Parameter = "count*8")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x2(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*8")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60972,7 +60972,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60982,7 +60982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -60992,7 +60992,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61002,7 +61002,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61012,7 +61012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Double value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61022,7 +61022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glProgramUniformMatrix4x3dvEXT")] [CLSCompliant(false)] - public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Double* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61032,7 +61032,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61042,7 +61042,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61052,7 +61052,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(Int32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61062,7 +61062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61072,7 +61072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new NotImplementedException(); } + public static void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] ref Single value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access|EXT_separate_shader_objects] /// @@ -61082,32 +61082,32 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count*12] [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, [CountAttribute(Parameter = "count*12")] Single* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformMatrix4x3(UInt32 program, Int32 location, Int32 count, bool transpose, [CountAttribute(Parameter = "count*12")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glPushClientAttribDefaultEXT")] - public static void PushClientAttribDefault(OpenTK.Graphics.OpenGL4.ClientAttribMask mask) { throw new NotImplementedException(); } + public static void PushClientAttribDefault(OpenTK.Graphics.OpenGL4.ClientAttribMask mask) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_debug_marker] /// /// [AutoGenerated(Category = "EXT_debug_marker", Version = "", EntryPoint = "glPushGroupMarkerEXT")] - public static void PushGroupMarker(Int32 length, String marker) { throw new NotImplementedException(); } + public static void PushGroupMarker(Int32 length, String marker) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(Int32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "EXT_raster_multisample|EXT_texture_filter_minmax|NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glRasterSamplesEXT")] [CLSCompliant(false)] - public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void RasterSamples(UInt32 samples, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61117,7 +61117,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61126,7 +61126,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61136,7 +61136,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61145,7 +61145,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferEXT")] [CLSCompliant(false)] - public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new NotImplementedException(); } + public static void TextureBuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61157,7 +61157,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61169,7 +61169,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61180,7 +61180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61191,7 +61191,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61203,7 +61203,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61215,7 +61215,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61226,7 +61226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61237,7 +61237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureBufferRangeEXT")] [CLSCompliant(false)] - public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new NotImplementedException(); } + public static void TextureBufferRange(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, UInt32 buffer, IntPtr offset, IntPtr size) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61251,7 +61251,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61267,7 +61267,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61283,7 +61283,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61299,7 +61299,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61315,7 +61315,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61329,7 +61329,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage1DEXT")] [CLSCompliant(false)] - public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61345,7 +61345,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61361,7 +61361,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61377,7 +61377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T8[,,] pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61393,7 +61393,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T8 pixels) where T8 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61408,7 +61408,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61425,7 +61425,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61442,7 +61442,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61459,7 +61459,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61476,7 +61476,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61491,7 +61491,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage2DEXT")] [CLSCompliant(false)] - public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61508,7 +61508,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61525,7 +61525,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61542,7 +61542,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61559,7 +61559,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61575,7 +61575,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61593,7 +61593,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61611,7 +61611,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61629,7 +61629,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61647,7 +61647,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61663,7 +61663,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureImage3DEXT")] [CLSCompliant(false)] - public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61681,7 +61681,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61699,7 +61699,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61717,7 +61717,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] T10[,,] pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61735,7 +61735,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureImage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width,height,depth")] ref T10 pixels) where T10 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61749,7 +61749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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 commit) { throw new NotImplementedException(); } + public static void TexturePageCommitment(Int32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61763,7 +61763,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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 commit) { throw new NotImplementedException(); } + public static void TexturePageCommitment(UInt32 texture, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, bool commit) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61772,7 +61772,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61781,7 +61781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Single param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61790,7 +61790,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61799,7 +61799,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61808,7 +61808,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61817,7 +61817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterfvEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61826,7 +61826,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameteriEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61835,7 +61835,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameteriEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61844,7 +61844,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61853,7 +61853,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61862,7 +61862,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61871,7 +61871,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61880,7 +61880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61889,7 +61889,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61898,7 +61898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61907,7 +61907,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new NotImplementedException(); } + public static void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] ref UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61916,7 +61916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterIuivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameterI(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61925,7 +61925,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61934,7 +61934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61943,7 +61943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new NotImplementedException(); } + public static void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61952,7 +61952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureParameterivEXT")] [CLSCompliant(false)] - public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void TextureParameter(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, OpenTK.Graphics.OpenGL4.TextureParameterName pname, [CountAttribute(Computed = "pname")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61960,7 +61960,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureRenderbufferEXT")] [CLSCompliant(false)] - public static void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 renderbuffer) { throw new NotImplementedException(); } + public static void TextureRenderbuffer(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61968,7 +61968,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureRenderbufferEXT")] [CLSCompliant(false)] - public static void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); } + public static void TextureRenderbuffer(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, UInt32 renderbuffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61979,7 +61979,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -61989,7 +61989,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62000,7 +62000,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62010,7 +62010,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage1DEXT")] [CLSCompliant(false)] - public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new NotImplementedException(); } + public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62022,7 +62022,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62033,7 +62033,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62045,7 +62045,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62056,7 +62056,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DEXT")] [CLSCompliant(false)] - public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62069,7 +62069,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62081,7 +62081,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62094,7 +62094,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62106,7 +62106,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage2DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage2DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62119,7 +62119,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62131,7 +62131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62144,7 +62144,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62156,7 +62156,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DEXT")] [CLSCompliant(false)] - public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); } + public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 levels, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62170,7 +62170,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62183,7 +62183,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(Int32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62197,7 +62197,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62210,7 +62210,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureStorage3DMultisampleEXT")] [CLSCompliant(false)] - public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new NotImplementedException(); } + public static void TextureStorage3DMultisample(UInt32 texture, OpenTK.Graphics.OpenGL4.All target, Int32 samples, OpenTK.Graphics.OpenGL4.SizedInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62223,7 +62223,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62238,7 +62238,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62253,7 +62253,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62268,7 +62268,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62283,7 +62283,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(Int32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62296,7 +62296,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage1DEXT")] [CLSCompliant(false)] - public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [CountAttribute(Computed = "format,type,width")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62311,7 +62311,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62326,7 +62326,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62341,7 +62341,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] T7[,,] pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62356,7 +62356,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage1D(UInt32 texture, OpenTK.Graphics.OpenGL4.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, [InAttribute, OutAttribute, CountAttribute(Computed = "format,type,width")] ref T7 pixels) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62371,7 +62371,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void TextureSubImage2D(Int32 texture, 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(Int32 texture, 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62388,7 +62388,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62405,7 +62405,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62422,7 +62422,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62439,7 +62439,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(Int32 texture, 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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62454,7 +62454,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage2DEXT")] [CLSCompliant(false)] - public static void TextureSubImage2D(UInt32 texture, 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage2D(UInt32 texture, 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, [CountAttribute(Computed = "format,type,width,height")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62471,7 +62471,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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, CountAttribute(Computed = "format,type,width,height")] T9[] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62488,7 +62488,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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, CountAttribute(Computed = "format,type,width,height")] T9[,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62505,7 +62505,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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, CountAttribute(Computed = "format,type,width,height")] T9[,,] pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62522,7 +62522,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage2D(UInt32 texture, 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, CountAttribute(Computed = "format,type,width,height")] ref T9 pixels) where T9 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62539,7 +62539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void TextureSubImage3D(Int32 texture, 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(Int32 texture, 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62558,7 +62558,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62577,7 +62577,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62596,7 +62596,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62615,7 +62615,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(Int32 texture, 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62632,7 +62632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(format,type,width,height,depth)] [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glTextureSubImage3DEXT")] [CLSCompliant(false)] - public static void TextureSubImage3D(UInt32 texture, 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new NotImplementedException(); } + public static void TextureSubImage3D(UInt32 texture, 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, [CountAttribute(Computed = "format,type,width,height,depth")] IntPtr pixels) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62651,7 +62651,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62670,7 +62670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62689,7 +62689,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, 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, CountAttribute(Computed = "format,type,width,height,depth")] T11[,,] pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62708,19 +62708,19 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void TextureSubImage3D(UInt32 texture, 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, CountAttribute(Computed = "format,type,width,height,depth")] ref T11 pixels) where T11 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool UnmapNamedBuffer(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glUnmapNamedBufferEXT")] [CLSCompliant(false)] - public static bool UnmapNamedBuffer(UInt32 buffer) { throw new NotImplementedException(); } + public static bool UnmapNamedBuffer(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -62736,7 +62736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(Int32 pipeline, Int32 stages, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Bind stages of a program object to a program pipeline @@ -62752,21 +62752,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseProgramStagesEXT")] [CLSCompliant(false)] - public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new NotImplementedException(); } + public static void UseProgramStages(UInt32 pipeline, UInt32 stages, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.OpenGL4.All type, Int32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glUseShaderProgramEXT")] [CLSCompliant(false)] - public static void UseShaderProgram(OpenTK.Graphics.OpenGL4.All type, UInt32 program) { throw new NotImplementedException(); } + public static void UseShaderProgram(OpenTK.Graphics.OpenGL4.All type, UInt32 program) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -62776,7 +62776,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(Int32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(Int32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_separate_shader_objects] /// Validate a program pipeline object against current GL state @@ -62786,7 +62786,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glValidateProgramPipelineEXT")] [CLSCompliant(false)] - public static void ValidateProgramPipeline(UInt32 pipeline) { throw new NotImplementedException(); } + public static void ValidateProgramPipeline(UInt32 pipeline) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62796,7 +62796,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexArrayBindVertexBuffer(Int32 vaobj, Int32 bindingindex, Int32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62806,7 +62806,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexArrayBindVertexBuffer(UInt32 vaobj, UInt32 bindingindex, UInt32 buffer, IntPtr offset, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62817,7 +62817,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62828,7 +62828,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62837,7 +62837,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexArrayEdgeFlagOffset(Int32 vaobj, Int32 buffer, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62846,7 +62846,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexArrayEdgeFlagOffset(UInt32 vaobj, UInt32 buffer, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62856,7 +62856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayFogCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayFogCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.FogPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayFogCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.FogPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62866,7 +62866,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayFogCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayFogCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.FogPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayFogCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.FogPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62876,7 +62876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayIndexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayIndexOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.IndexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayIndexOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.IndexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62886,7 +62886,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayIndexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayIndexOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.IndexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayIndexOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.IndexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62898,7 +62898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayMultiTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayMultiTexCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.All texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayMultiTexCoordOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.All texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62910,7 +62910,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayMultiTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayMultiTexCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.All texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayMultiTexCoordOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.All texunit, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62920,7 +62920,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayNormalOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayNormalOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.NormalPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayNormalOffset(Int32 vaobj, Int32 buffer, OpenTK.Graphics.OpenGL4.NormalPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62930,7 +62930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayNormalOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayNormalOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.NormalPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayNormalOffset(UInt32 vaobj, UInt32 buffer, OpenTK.Graphics.OpenGL4.NormalPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62941,7 +62941,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArraySecondaryColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArraySecondaryColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArraySecondaryColorOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62952,7 +62952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArraySecondaryColorOffsetEXT")] [CLSCompliant(false)] - public static void VertexArraySecondaryColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArraySecondaryColorOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.ColorPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62963,7 +62963,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayTexCoordOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayTexCoordOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62974,7 +62974,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayTexCoordOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayTexCoordOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayTexCoordOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.TexCoordPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62982,7 +62982,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribBinding(Int32 vaobj, Int32 attribindex, Int32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62990,7 +62990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribBindingEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribBinding(UInt32 vaobj, UInt32 attribindex, UInt32 bindingindex) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -62998,7 +62998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribDivisor(Int32 vaobj, Int32 index, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63006,7 +63006,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribDivisor(UInt32 vaobj, UInt32 index, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63017,7 +63017,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63028,7 +63028,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63038,7 +63038,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63048,7 +63048,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribIFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63060,7 +63060,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63072,7 +63072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribIOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63082,7 +63082,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLFormat(Int32 vaobj, Int32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63092,7 +63092,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexAttribLFormatEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLFormat(UInt32 vaobj, UInt32 attribindex, Int32 size, OpenTK.Graphics.OpenGL4.All type, UInt32 relativeoffset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63104,7 +63104,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63116,7 +63116,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribLOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63129,7 +63129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribOffset(Int32 vaobj, Int32 buffer, Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63142,7 +63142,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexAttribOffset(UInt32 vaobj, UInt32 buffer, UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.VertexAttribPointerType type, bool normalized, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63150,7 +63150,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexBindingDivisor(Int32 vaobj, Int32 bindingindex, Int32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63158,7 +63158,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexBindingDivisorEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new NotImplementedException(); } + public static void VertexArrayVertexBindingDivisor(UInt32 vaobj, UInt32 bindingindex, UInt32 divisor) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63169,7 +63169,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexOffset(Int32 vaobj, Int32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_direct_state_access] /// @@ -63180,7 +63180,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "EXT_direct_state_access", Version = "", EntryPoint = "glVertexArrayVertexOffsetEXT")] [CLSCompliant(false)] - public static void VertexArrayVertexOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride, IntPtr offset) { throw new NotImplementedException(); } + public static void VertexArrayVertexOffset(UInt32 vaobj, UInt32 buffer, Int32 size, OpenTK.Graphics.OpenGL4.VertexPointerType type, Int32 stride, IntPtr offset) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -63188,7 +63188,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32[] box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -63196,7 +63196,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new NotImplementedException(); } + public static void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] ref Int32 box) { throw new BindingsNotRewrittenException(); } /// [requires: EXT_window_rectangles] /// @@ -63204,7 +63204,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(count)] [AutoGenerated(Category = "EXT_window_rectangles", Version = "", EntryPoint = "glWindowRectanglesEXT")] [CLSCompliant(false)] - public static unsafe void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new NotImplementedException(); } + public static unsafe void WindowRectangles(OpenTK.Graphics.OpenGL4.All mode, Int32 count, [CountAttribute(Computed = "count")] Int32* box) { throw new BindingsNotRewrittenException(); } } @@ -63214,174 +63214,174 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glBeginPerfQueryINTEL")] [CLSCompliant(false)] - public static void BeginPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void BeginPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(Int32 queryId, [OutAttribute] out Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(Int32 queryId, [OutAttribute] Int32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32[] queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new NotImplementedException(); } + public static void CreatePerfQuery(UInt32 queryId, [OutAttribute] out UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glCreatePerfQueryINTEL")] [CLSCompliant(false)] - public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new NotImplementedException(); } + public static unsafe void CreatePerfQuery(UInt32 queryId, [OutAttribute] UInt32* queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glDeletePerfQueryINTEL")] [CLSCompliant(false)] - public static void DeletePerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void DeletePerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(Int32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(Int32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glEndPerfQueryINTEL")] [CLSCompliant(false)] - public static void EndPerfQuery(UInt32 queryHandle) { throw new NotImplementedException(); } + public static void EndPerfQuery(UInt32 queryHandle) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetFirstPerfQueryI() { throw new NotImplementedException(); } + public static Int32 GetFirstPerfQueryI() { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetFirstPerfQueryI([OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetFirstPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetFirstPerfQueryI([OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new NotImplementedException(); } + public static Int32 GetNextPerfQueryI(UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(Int32 queryId, [OutAttribute] out Int32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(Int32 queryId, [OutAttribute] Int32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32[] nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new NotImplementedException(); } + public static void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] out UInt32 nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetNextPerfQueryIdINTEL")] [CLSCompliant(false)] - public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new NotImplementedException(); } + public static unsafe void GetNextPerfQueryI(UInt32 queryId, [OutAttribute] UInt32* nextQueryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63397,7 +63397,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32[] counterOffset, [OutAttribute] Int32[] counterDataSize, [OutAttribute] Int32[] counterTypeEnum, [OutAttribute] Int32[] counterDataTypeEnum, [OutAttribute] Int64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63413,7 +63413,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out Int32 counterOffset, [OutAttribute] out Int32 counterDataSize, [OutAttribute] out Int32 counterTypeEnum, [OutAttribute] out Int32 counterDataTypeEnum, [OutAttribute] out Int64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63429,7 +63429,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(Int32 queryId, Int32 counterId, Int32 counterNameLength, [OutAttribute] out String counterName, Int32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] Int32* counterOffset, [OutAttribute] Int32* counterDataSize, [OutAttribute] Int32* counterTypeEnum, [OutAttribute] Int32* counterDataTypeEnum, [OutAttribute] Int64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63445,7 +63445,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32[] counterOffset, [OutAttribute] UInt32[] counterDataSize, [OutAttribute] UInt32[] counterTypeEnum, [OutAttribute] UInt32[] counterDataTypeEnum, [OutAttribute] UInt64[] rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63461,7 +63461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new NotImplementedException(); } + public static void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] out UInt32 counterOffset, [OutAttribute] out UInt32 counterDataSize, [OutAttribute] out UInt32 counterTypeEnum, [OutAttribute] out UInt32 counterDataTypeEnum, [OutAttribute] out UInt64 rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63477,7 +63477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfCounterInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new NotImplementedException(); } + public static unsafe void GetPerfCounterInfo(UInt32 queryId, UInt32 counterId, UInt32 counterNameLength, [OutAttribute] out String counterName, UInt32 counterDescLength, [OutAttribute] out String counterDesc, [OutAttribute] UInt32* counterOffset, [OutAttribute] UInt32* counterDataSize, [OutAttribute] UInt32* counterTypeEnum, [OutAttribute] UInt32* counterDataTypeEnum, [OutAttribute] UInt64* rawCounterMaxValue) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63487,7 +63487,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63497,7 +63497,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out Int32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63507,7 +63507,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] Int32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63519,7 +63519,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63531,7 +63531,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63543,7 +63543,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63555,7 +63555,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63567,7 +63567,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63579,7 +63579,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63591,7 +63591,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63603,7 +63603,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63615,7 +63615,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63627,7 +63627,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63639,7 +63639,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out Int32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63651,7 +63651,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(Int32 queryHandle, Int32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] Int32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63661,7 +63661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32[] bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63671,7 +63671,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new NotImplementedException(); } + public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] out UInt32 bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63681,7 +63681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryDataINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [OutAttribute] IntPtr data, [OutAttribute] UInt32* bytesWritten) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63693,7 +63693,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63705,7 +63705,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63717,7 +63717,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63729,7 +63729,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63741,7 +63741,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63753,7 +63753,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63765,7 +63765,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63777,7 +63777,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63789,7 +63789,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] T3[,,] data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63801,7 +63801,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32[] bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63813,7 +63813,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] out UInt32 bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63825,55 +63825,55 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPerfQueryData(UInt32 queryHandle, UInt32 flags, Int32 dataSize, [InAttribute, OutAttribute] ref T3 data, [OutAttribute] UInt32* bytesWritten) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new NotImplementedException(); } + public static Int32 GetPerfQueryIdByName([OutAttribute] out String queryName) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out Int32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] Int32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32[] queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new NotImplementedException(); } + public static void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] out UInt32 queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryIdByNameINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryIdByName([OutAttribute] out String queryName, [OutAttribute] UInt32* queryId) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63885,7 +63885,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32[] dataSize, [OutAttribute] Int32[] noCounters, [OutAttribute] Int32[] noInstances, [OutAttribute] Int32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63897,7 +63897,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out Int32 dataSize, [OutAttribute] out Int32 noCounters, [OutAttribute] out Int32 noInstances, [OutAttribute] out Int32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63909,7 +63909,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(Int32 queryId, Int32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] Int32* dataSize, [OutAttribute] Int32* noCounters, [OutAttribute] Int32* noInstances, [OutAttribute] Int32* capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63921,7 +63921,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32[] dataSize, [OutAttribute] UInt32[] noCounters, [OutAttribute] UInt32[] noInstances, [OutAttribute] UInt32[] capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63933,7 +63933,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new NotImplementedException(); } + public static void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] out UInt32 dataSize, [OutAttribute] out UInt32 noCounters, [OutAttribute] out UInt32 noInstances, [OutAttribute] out UInt32 capsMask) { throw new BindingsNotRewrittenException(); } /// [requires: INTEL_performance_query] /// @@ -63945,7 +63945,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "INTEL_performance_query", Version = "", EntryPoint = "glGetPerfQueryInfoINTEL")] [CLSCompliant(false)] - public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new NotImplementedException(); } + public static unsafe void GetPerfQueryInfo(UInt32 queryId, UInt32 queryNameLength, [OutAttribute] out String queryName, [OutAttribute] UInt32* dataSize, [OutAttribute] UInt32* noCounters, [OutAttribute] UInt32* noInstances, [OutAttribute] UInt32* capsMask) { throw new BindingsNotRewrittenException(); } } @@ -63953,7 +63953,7 @@ namespace OpenTK.Graphics.OpenGL4 { /// [requires: KHR_blend_equation_advanced] [AutoGenerated(Category = "KHR_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierKHR")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -63965,7 +63965,7 @@ namespace OpenTK.Graphics.OpenGL4 /// A user supplied pointer that will be passed on each invocation of callback. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] - public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new NotImplementedException(); } + public static void DebugMessageCallback(DebugProcKhr callback, IntPtr userParam) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -63980,7 +63980,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -63995,7 +63995,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -64010,7 +64010,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] T1[,,] userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Specify a callback to receive debugging messages from the GL @@ -64024,7 +64024,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallbackKHR")] public static void DebugMessageCallback(DebugProcKhr callback, [InAttribute, OutAttribute] ref T1 userParam) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64049,7 +64049,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64074,7 +64074,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64099,7 +64099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64124,7 +64124,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, UInt32[] ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64149,7 +64149,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 UInt32 ids, bool enabled) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Control the reporting of debug messages in a debug context @@ -64174,7 +64174,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -64199,7 +64199,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(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Inject an application-supplied message into the debug message queue @@ -64224,7 +64224,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, UInt32 id, OpenTK.Graphics.OpenGL4.All severity, Int32 length, String buf) { throw new NotImplementedException(); } + 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 BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64255,7 +64255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64286,7 +64286,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64317,7 +64317,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] Int32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64348,7 +64348,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32[] ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All[] severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32[] lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64379,7 +64379,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All sources, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All types, [OutAttribute, CountAttribute(Parameter = "count")] out UInt32 ids, [OutAttribute, CountAttribute(Parameter = "count")] out OpenTK.Graphics.OpenGL4.All severities, [OutAttribute, CountAttribute(Parameter = "count")] out Int32 lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve messages from the debug message log @@ -64410,11 +64410,11 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")] [CLSCompliant(false)] - public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new NotImplementedException(); } + public static unsafe Int32 GetDebugMessageLog(UInt32 count, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* sources, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* types, [OutAttribute, CountAttribute(Parameter = "count")] UInt32* ids, [OutAttribute, CountAttribute(Parameter = "count")] OpenTK.Graphics.OpenGL4.All* severities, [OutAttribute, CountAttribute(Parameter = "count")] Int32* lengths, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String messageLog) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetGraphicsResetStatusKHR")] - public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All GetGraphicsResetStatus() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64423,7 +64423,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64432,7 +64432,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64441,7 +64441,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64450,7 +64450,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64459,7 +64459,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64468,7 +64468,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformfvKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64477,7 +64477,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64486,7 +64486,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64495,7 +64495,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64504,7 +64504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64513,7 +64513,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64522,7 +64522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64531,7 +64531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64540,7 +64540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new NotImplementedException(); } + public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out UInt32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -64549,7 +64549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glGetnUniformuivKHR")] [CLSCompliant(false)] - public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new NotImplementedException(); } + public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] UInt32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64571,7 +64571,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64593,7 +64593,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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64615,7 +64615,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64637,7 +64637,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64659,7 +64659,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a named object identified within a namespace @@ -64681,7 +64681,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64701,7 +64701,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64721,7 +64721,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64741,7 +64741,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use out overload instead")] [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")] [CLSCompliant(false)] - public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new NotImplementedException(); } + public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64763,7 +64763,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64785,7 +64785,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64807,7 +64807,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64829,7 +64829,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64851,7 +64851,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64873,7 +64873,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64895,7 +64895,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64917,7 +64917,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64939,7 +64939,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64961,7 +64961,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32[] length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -64983,7 +64983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] out Int32 length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Retrieve the label of a sync object identified by a pointer @@ -65005,13 +65005,13 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute, CountAttribute(Count = 1)] Int32* length, [OutAttribute, CountAttribute(Parameter = "bufSize")] out String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] - public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); } + public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [OutAttribute] IntPtr @params) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -65020,7 +65020,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -65029,7 +65029,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -65038,7 +65038,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] T1[,,] @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// @@ -65046,7 +65046,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetPointervKHR")] public static void GetPointer(OpenTK.Graphics.OpenGL4.All pname, [InAttribute, OutAttribute] ref T1 @params) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -65065,7 +65065,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(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, Int32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a named object identified within a namespace @@ -65084,7 +65084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ObjectLabel(OpenTK.Graphics.OpenGL4.All identifier, UInt32 name, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65099,7 +65099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// The address of a string containing the label to assign to the object. /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] - public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new NotImplementedException(); } + public static void ObjectPtrLabel(IntPtr ptr, Int32 length, String label) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65117,7 +65117,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65135,7 +65135,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65153,7 +65153,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ObjectPtrLabel([InAttribute, OutAttribute] T0[,,] ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Label a a sync object identified by a pointer @@ -65170,13 +65170,13 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectPtrLabelKHR")] public static void ObjectPtrLabel([InAttribute, OutAttribute] ref T0 ptr, Int32 length, String label) where T0 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Pop the active debug group /// [AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glPopDebugGroupKHR")] - public static void PopDebugGroup() { throw new NotImplementedException(); } + public static void PopDebugGroup() { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -65195,7 +65195,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(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, Int32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_debug] /// Push a named debug group into the command stream @@ -65214,7 +65214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void PushDebugGroup(OpenTK.Graphics.OpenGL4.All source, UInt32 id, Int32 length, String message) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65226,7 +65226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [length: bufSize] [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] - public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new NotImplementedException(); } + public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] IntPtr data) { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65241,7 +65241,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65256,7 +65256,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65271,7 +65271,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] T7[,,] data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: KHR_robustness] /// @@ -65285,7 +65285,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "KHR_robustness", Version = "", EntryPoint = "glReadnPixelsKHR")] public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL4.PixelFormat format, OpenTK.Graphics.OpenGL4.PixelType type, Int32 bufSize, [InAttribute, OutAttribute, CountAttribute(Parameter = "bufSize")] ref T7 data) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } } @@ -65302,7 +65302,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(Int32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] /// Start conditional rendering @@ -65315,17 +65315,17 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glBeginConditionalRenderNV")] [CLSCompliant(false)] - public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new NotImplementedException(); } + public static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendBarrierNV")] - public static void BlendBarrier() { throw new NotImplementedException(); } + public static void BlendBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_blend_equation_advanced] /// /// [AutoGenerated(Category = "NV_blend_equation_advanced", Version = "", EntryPoint = "glBlendParameteriNV")] - public static void BlendParameter(OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new NotImplementedException(); } + public static void BlendParameter(OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -65334,7 +65334,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, Int32 index, Int64 address, Int32 length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, Int32 index, Int64 address, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -65343,7 +65343,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, Int32 index, Int64 address, IntPtr length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, Int32 index, Int64 address, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -65352,7 +65352,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, UInt64 address, Int32 length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, UInt64 address, Int32 length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -65361,104 +65361,104 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glBufferAddressRangeNV")] [CLSCompliant(false)] - public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, UInt64 address, IntPtr length) { throw new NotImplementedException(); } + public static void BufferAddressRange(OpenTK.Graphics.OpenGL4.All pname, UInt32 index, UInt64 address, IntPtr length) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCallCommandListNV")] [CLSCompliant(false)] - public static void CallCommandList(Int32 list) { throw new NotImplementedException(); } + public static void CallCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCallCommandListNV")] [CLSCompliant(false)] - public static void CallCommandList(UInt32 list) { throw new NotImplementedException(); } + public static void CallCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glColorFormatNV")] - public static void ColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void ColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCommandListSegmentsNV")] [CLSCompliant(false)] - public static void CommandListSegments(Int32 list, Int32 segments) { throw new NotImplementedException(); } + public static void CommandListSegments(Int32 list, Int32 segments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCommandListSegmentsNV")] [CLSCompliant(false)] - public static void CommandListSegments(UInt32 list, UInt32 segments) { throw new NotImplementedException(); } + public static void CommandListSegments(UInt32 list, UInt32 segments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCompileCommandListNV")] [CLSCompliant(false)] - public static void CompileCommandList(Int32 list) { throw new NotImplementedException(); } + public static void CompileCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCompileCommandListNV")] [CLSCompliant(false)] - public static void CompileCommandList(UInt32 list) { throw new NotImplementedException(); } + public static void CompileCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_dilate] /// /// [AutoGenerated(Category = "NV_conservative_raster_dilate", Version = "", EntryPoint = "glConservativeRasterParameterfNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster_pre_snap_triangles] /// /// [AutoGenerated(Category = "NV_conservative_raster_pre_snap_triangles", Version = "", EntryPoint = "glConservativeRasterParameteriNV")] - public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL4.All pname, Int32 param) { throw new NotImplementedException(); } + public static void ConservativeRasterParameter(OpenTK.Graphics.OpenGL4.All pname, Int32 param) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void CopyPath(Int32 resultPath, Int32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCopyPathNV")] [CLSCompliant(false)] - public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new NotImplementedException(); } + public static void CopyPath(UInt32 resultPath, UInt32 srcPath) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationNV")] - public static void CoverageModulation(OpenTK.Graphics.OpenGL4.All components) { throw new NotImplementedException(); } + public static void CoverageModulation(OpenTK.Graphics.OpenGL4.All components) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, Single[] v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static void CoverageModulationTable(Int32 n, ref Single v) { throw new NotImplementedException(); } + public static void CoverageModulationTable(Int32 n, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new NotImplementedException(); } + public static unsafe void CoverageModulationTable(Int32 n, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65470,7 +65470,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65482,7 +65482,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65494,7 +65494,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65506,7 +65506,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65518,7 +65518,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65530,7 +65530,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65544,7 +65544,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65558,7 +65558,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65572,7 +65572,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65586,7 +65586,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65600,7 +65600,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65614,7 +65614,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65628,7 +65628,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65642,7 +65642,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65656,7 +65656,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65670,7 +65670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65684,7 +65684,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65698,7 +65698,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65712,7 +65712,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65726,7 +65726,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65740,7 +65740,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65754,7 +65754,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65768,7 +65768,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65782,7 +65782,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65796,7 +65796,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65810,7 +65810,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65824,7 +65824,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65838,7 +65838,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65852,7 +65852,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65866,21 +65866,21 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverFillPathNV")] [CLSCompliant(false)] - public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void CoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65892,7 +65892,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65904,7 +65904,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65916,7 +65916,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65928,7 +65928,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65940,7 +65940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65952,7 +65952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65966,7 +65966,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65980,7 +65980,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -65994,7 +65994,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66008,7 +66008,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66022,7 +66022,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66036,7 +66036,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66050,7 +66050,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66064,7 +66064,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66078,7 +66078,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66092,7 +66092,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66106,7 +66106,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66120,7 +66120,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66134,7 +66134,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66148,7 +66148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66162,7 +66162,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66176,7 +66176,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66190,7 +66190,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66204,7 +66204,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66218,7 +66218,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66232,7 +66232,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66246,7 +66246,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66260,7 +66260,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66274,7 +66274,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -66288,227 +66288,227 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void CoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(Int32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glCoverStrokePathNV")] [CLSCompliant(false)] - public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void CoverStrokePath(UInt32 path, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] out Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new NotImplementedException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new NotImplementedException(); } + public static void CreateCommandLists(Int32 n, [OutAttribute] out UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateCommandListsNV")] [CLSCompliant(false)] - public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new NotImplementedException(); } + public static unsafe void CreateCommandLists(Int32 n, [OutAttribute] UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] out Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new NotImplementedException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute] Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new NotImplementedException(); } + public static void CreateStates(Int32 n, [OutAttribute] out UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glCreateStatesNV")] [CLSCompliant(false)] - public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new NotImplementedException(); } + public static unsafe void CreateStates(Int32 n, [OutAttribute] UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(Int32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandList(Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandList(UInt32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandList(UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, Int32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, ref Int32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new NotImplementedException(); } + public static unsafe void DeleteCommandLists(Int32 n, Int32* lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, UInt32[] lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new NotImplementedException(); } + public static void DeleteCommandLists(Int32 n, ref UInt32 lists) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteCommandListsNV")] [CLSCompliant(false)] - public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new NotImplementedException(); } + public static unsafe void DeleteCommandLists(Int32 n, UInt32* lists) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void DeletePath(Int32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glDeletePathsNV")] [CLSCompliant(false)] - public static void DeletePath(UInt32 path, Int32 range) { throw new NotImplementedException(); } + public static void DeletePath(UInt32 path, Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(Int32 states) { throw new NotImplementedException(); } + public static void DeleteState(Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteState(UInt32 states) { throw new NotImplementedException(); } + public static void DeleteState(UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, Int32[] states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, Int32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref Int32 states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, ref Int32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new NotImplementedException(); } + public static unsafe void DeleteStates(Int32 n, Int32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, UInt32[] states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, UInt32[] states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static void DeleteStates(Int32 n, ref UInt32 states) { throw new NotImplementedException(); } + public static void DeleteStates(Int32 n, ref UInt32 states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDeleteStatesNV")] [CLSCompliant(false)] - public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new NotImplementedException(); } + public static unsafe void DeleteStates(Int32 n, UInt32* states) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66517,7 +66517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, Int64[] indirects, Int32[] sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, Int64[] indirects, Int32[] sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66526,7 +66526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, ref Int64 indirects, ref Int32 sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, ref Int64 indirects, ref Int32 sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66535,7 +66535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, Int64* indirects, Int32* sizes, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, Int64* indirects, Int32* sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66544,7 +66544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt64[] indirects, Int32[] sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt64[] indirects, Int32[] sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66553,7 +66553,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, ref UInt64 indirects, ref Int32 sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, ref UInt64 indirects, ref Int32 sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66562,7 +66562,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsAddres(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt64* indirects, Int32* sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66572,7 +66572,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66582,7 +66582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, ref IntPtr indirects, ref Int32 sizes, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, ref IntPtr indirects, ref Int32 sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66592,7 +66592,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, IntPtr* indirects, Int32* sizes, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, Int32 buffer, IntPtr* indirects, Int32* sizes, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66602,7 +66602,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66612,7 +66612,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66622,7 +66622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsNV")] [CLSCompliant(false)] - public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommands(OpenTK.Graphics.OpenGL4.All primitiveMode, UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66632,7 +66632,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(Int64[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(Int64[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66642,7 +66642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(ref Int64 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(ref Int64 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66652,7 +66652,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStatesAddres(Int64* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStatesAddres(Int64* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66662,7 +66662,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(UInt64[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(UInt64[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66672,7 +66672,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static void DrawCommandsStatesAddres(ref UInt64 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStatesAddres(ref UInt64 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66682,7 +66682,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesAddressNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStatesAddres(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStatesAddres(UInt64* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66693,7 +66693,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(Int32 buffer, IntPtr[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66704,7 +66704,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(Int32 buffer, ref IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(Int32 buffer, ref IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66715,7 +66715,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStates(Int32 buffer, IntPtr* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStates(Int32 buffer, IntPtr* indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66726,7 +66726,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(UInt32 buffer, IntPtr[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66737,7 +66737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static void DrawCommandsStates(UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void DrawCommandsStates(UInt32 buffer, ref IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -66748,7 +66748,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glDrawCommandsStatesNV")] [CLSCompliant(false)] - public static unsafe void DrawCommandsStates(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void DrawCommandsStates(UInt32 buffer, IntPtr* indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -66764,7 +66764,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(Int64 vkImage, Int32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// @@ -66780,34 +66780,34 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glDrawVkImageNV")] [CLSCompliant(false)] - public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new NotImplementedException(); } + public static void DrawVkImage(UInt64 vkImage, UInt32 sampler, Single x0, Single y0, Single x1, Single y1, Single z, Single s0, Single t0, Single s1, Single t1) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glEdgeFlagFormatNV")] - public static void EdgeFlagFormat(Int32 stride) { throw new NotImplementedException(); } + public static void EdgeFlagFormat(Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conditional_render] [AutoGenerated(Category = "NV_conditional_render", Version = "", EntryPoint = "glEndConditionalRenderNV")] - public static void EndConditionalRender() { throw new NotImplementedException(); } + public static void EndConditionalRender() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glFogCoordFormatNV")] - public static void FogCoordFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void FogCoordFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(Int32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(Int32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_fragment_coverage_to_color] /// [AutoGenerated(Category = "NV_fragment_coverage_to_color", Version = "", EntryPoint = "glFragmentCoverageColorNV")] [CLSCompliant(false)] - public static void FragmentCoverageColor(UInt32 color) { throw new NotImplementedException(); } + public static void FragmentCoverageColor(UInt32 color) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66816,7 +66816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66825,7 +66825,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66834,7 +66834,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66843,7 +66843,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66852,7 +66852,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -66861,12 +66861,12 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void FramebufferSampleLocations(OpenTK.Graphics.OpenGL4.All target, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGenPathsNV")] - public static Int32 GenPath(Int32 range) { throw new NotImplementedException(); } + public static Int32 GenPath(Int32 range) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66882,7 +66882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66898,7 +66898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66914,7 +66914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66930,7 +66930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66946,7 +66946,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Return parameters of a buffer object @@ -66962,47 +66962,47 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetBufferParameter(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetCommandHeaderNV")] [CLSCompliant(false)] - public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL4.All tokenID, Int32 size) { throw new NotImplementedException(); } + public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL4.All tokenID, Int32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetCommandHeaderNV")] [CLSCompliant(false)] - public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL4.All tokenID, UInt32 size) { throw new NotImplementedException(); } + public static Int32 GetCommandHeader(OpenTK.Graphics.OpenGL4.All tokenID, UInt32 size) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static Single GetCoverageModulationTable() { throw new NotImplementedException(); } + public static Single GetCoverageModulationTable() { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new NotImplementedException(); } + public static void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] out Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_mixed_samples] /// /// [AutoGenerated(Category = "NV_framebuffer_mixed_samples", Version = "", EntryPoint = "glGetCoverageModulationTableNV")] [CLSCompliant(false)] - public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new NotImplementedException(); } + public static unsafe void GetCoverageModulationTable(Int32 bufsize, [OutAttribute] Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -67012,7 +67012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(Int32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -67022,7 +67022,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetImageHandleNV")] [CLSCompliant(false)] - public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new NotImplementedException(); } + public static Int64 GetImageHandle(UInt32 texture, Int32 level, bool layered, Int32 layer, OpenTK.Graphics.OpenGL4.All format) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67030,7 +67030,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67038,7 +67038,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67046,7 +67046,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new NotImplementedException(); } + public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, Int32 index, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67054,7 +67054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67062,7 +67062,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new NotImplementedException(); } + public static void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -67070,55 +67070,55 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glGetIntegerui64i_vNV")] [CLSCompliant(false)] - public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new NotImplementedException(); } + public static unsafe void GetIntegerui64(OpenTK.Graphics.OpenGL4.All value, UInt32 index, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static Int64 GetInteger(OpenTK.Graphics.OpenGL4.All value) { throw new NotImplementedException(); } + public static Int64 GetInteger(OpenTK.Graphics.OpenGL4.All value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] Int64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] out Int64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] Int64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] UInt64[] result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new NotImplementedException(); } + public static void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] out UInt64 result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [length: COMPSIZE(value)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetIntegerui64vNV")] [CLSCompliant(false)] - public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new NotImplementedException(); } + public static unsafe void GetInteger(OpenTK.Graphics.OpenGL4.All value, [OutAttribute, CountAttribute(Computed = "value")] UInt64* result) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -67129,7 +67129,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -67140,7 +67140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new NotImplementedException(); } + public static void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] out Int32 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_internalformat_sample_query] /// @@ -67151,7 +67151,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: bufSize] [AutoGenerated(Category = "NV_internalformat_sample_query", Version = "", EntryPoint = "glGetInternalformatSampleivNV")] [CLSCompliant(false)] - public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new NotImplementedException(); } + public static unsafe void GetInternalformatSample(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All internalformat, Int32 samples, OpenTK.Graphics.OpenGL4.All pname, Int32 bufSize, [OutAttribute, CountAttribute(Parameter = "bufSize")] Int32* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67159,7 +67159,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67167,7 +67167,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67175,7 +67175,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67184,7 +67184,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67193,7 +67193,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67202,7 +67202,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(Int32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67210,7 +67210,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67218,7 +67218,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67226,7 +67226,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.BufferParameterName pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67235,7 +67235,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67244,7 +67244,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// @@ -67253,7 +67253,7 @@ namespace OpenTK.Graphics.OpenGL4 [Obsolete("Use strongly typed overload instead")] [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetNamedBufferParameterui64vNV")] [CLSCompliant(false)] - public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetNamedBufferParameter(UInt32 buffer, OpenTK.Graphics.OpenGL4.NvShaderBufferLoad pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67261,7 +67261,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67269,7 +67269,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67277,7 +67277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67285,7 +67285,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67293,7 +67293,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67301,169 +67301,169 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathColorGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(Int32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static Byte GetPathCommand(UInt32 path) { throw new NotImplementedException(); } + public static Byte GetPathCommand(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte[] commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new NotImplementedException(); } + public static void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Byte commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new NotImplementedException(); } + public static unsafe void GetPathCommands(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Byte* commands) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static Single GetPathCoord(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathCoord(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new NotImplementedException(); } + public static void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathCoordsNV")] [CLSCompliant(false)] - public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new NotImplementedException(); } + public static unsafe void GetPathCoords(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(Int32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static Single GetPathDashArray(UInt32 path) { throw new NotImplementedException(); } + public static Single GetPathDashArray(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(Int32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new NotImplementedException(); } + public static void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] out Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [length: COMPSIZE(path)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void GetPathDashArray(UInt32 path, [OutAttribute, CountAttribute(Computed = "path")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67471,7 +67471,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(Int32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67479,7 +67479,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathLengthNV")] [CLSCompliant(false)] - public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new NotImplementedException(); } + public static Single GetPathLength(UInt32 path, Int32 startSegment, Int32 numSegments) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67489,7 +67489,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67499,7 +67499,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67509,7 +67509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(Int32 metricQueryMask, Int32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67519,7 +67519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67529,7 +67529,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67539,7 +67539,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricRangeNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetricRange(UInt32 metricQueryMask, UInt32 firstPathName, Int32 numPaths, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67551,7 +67551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67563,7 +67563,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67575,7 +67575,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67589,7 +67589,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67603,7 +67603,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67617,7 +67617,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67631,7 +67631,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67645,7 +67645,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67659,7 +67659,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67673,7 +67673,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67687,7 +67687,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67701,7 +67701,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67715,7 +67715,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67729,7 +67729,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67743,7 +67743,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(Int32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67755,7 +67755,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67767,7 +67767,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new NotImplementedException(); } + public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67779,7 +67779,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(metricQueryMask,numPaths,stride)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathMetricsNV")] [CLSCompliant(false)] - public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new NotImplementedException(); } + public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67793,7 +67793,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67807,7 +67807,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67821,7 +67821,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67835,7 +67835,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67849,7 +67849,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67863,7 +67863,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67877,7 +67877,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67891,7 +67891,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67905,7 +67905,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67919,7 +67919,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single[] metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67933,7 +67933,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] out Single metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67947,7 +67947,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathMetric(UInt32 metricQueryMask, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Int32 stride, [OutAttribute, CountAttribute(Computed = "metricQueryMask,numPaths,stride")] Single* metrics) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67955,7 +67955,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67963,7 +67963,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67971,7 +67971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67979,7 +67979,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67987,7 +67987,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -67995,7 +67995,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68003,7 +68003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68011,7 +68011,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68019,7 +68019,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68027,7 +68027,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68035,7 +68035,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68043,7 +68043,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 4] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Count = 4)] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68057,7 +68057,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68071,7 +68071,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68085,7 +68085,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68099,7 +68099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68113,7 +68113,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new NotImplementedException(); } + public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68127,7 +68127,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pathListMode,numPaths)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathSpacingNV")] [CLSCompliant(false)] - public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new NotImplementedException(); } + public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68143,7 +68143,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68159,7 +68159,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68175,7 +68175,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68191,7 +68191,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68207,7 +68207,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68223,7 +68223,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68239,7 +68239,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68255,7 +68255,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68271,7 +68271,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68287,7 +68287,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68303,7 +68303,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68319,7 +68319,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68335,7 +68335,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68351,7 +68351,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68367,7 +68367,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68383,7 +68383,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68399,7 +68399,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68415,7 +68415,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T3[,,] paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68431,7 +68431,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68447,7 +68447,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68463,7 +68463,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, Int32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68479,7 +68479,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single[] returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68495,7 +68495,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] out Single returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68511,7 +68511,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void GetPathSpacing(OpenTK.Graphics.OpenGL4.All pathListMode, Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T3 paths, UInt32 pathBase, Single advanceScale, Single kerningScale, OpenTK.Graphics.OpenGL4.All transformType, [OutAttribute, CountAttribute(Computed = "pathListMode,numPaths")] Single* returnedSpacing) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68519,7 +68519,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68527,7 +68527,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68535,7 +68535,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenfvNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68543,7 +68543,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68551,7 +68551,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new NotImplementedException(); } + public static void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68559,7 +68559,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetPathTexGenivNV")] [CLSCompliant(false)] - public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void GetPathTexGen(OpenTK.Graphics.OpenGL4.TextureUnit texCoordSet, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68578,7 +68578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68597,7 +68597,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68616,7 +68616,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.All programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68635,7 +68635,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Single[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68654,7 +68654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new NotImplementedException(); } + public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.All props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Single @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// Retrieve values for multiple properties of a single active resource within a program object @@ -68673,38 +68673,38 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glGetProgramResourcefvNV")] [CLSCompliant(false)] - public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new NotImplementedException(); } + public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.All programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.All* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Single* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glGetStageIndexNV")] - public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL4.All shadertype) { throw new NotImplementedException(); } + public static Int16 GetStageIndex(OpenTK.Graphics.OpenGL4.All shadertype) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(Int32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(Int32 texture) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureHandle(UInt32 texture) { throw new NotImplementedException(); } + public static Int64 GetTextureHandle(UInt32 texture) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static Int64 GetTextureSamplerHandle(Int32 texture, Int32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glGetTextureSamplerHandleNV")] [CLSCompliant(false)] - public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new NotImplementedException(); } + public static Int64 GetTextureSamplerHandle(UInt32 texture, UInt32 sampler) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68720,7 +68720,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68736,7 +68736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68752,7 +68752,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(Int32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68768,7 +68768,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68784,7 +68784,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Returns the value of a uniform variable @@ -68800,7 +68800,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glGetUniformi64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -68816,7 +68816,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -68832,7 +68832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Returns the value of a uniform variable @@ -68848,7 +68848,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glGetUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetUniform(UInt32 program, Int32 location, [OutAttribute, CountAttribute(Computed = "program,location")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68856,7 +68856,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68864,7 +68864,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68872,7 +68872,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(Int32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68880,7 +68880,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68888,7 +68888,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out Int64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68896,7 +68896,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLi64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] Int64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68904,7 +68904,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64[] @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68912,7 +68912,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new NotImplementedException(); } + public static void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] out UInt64 @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -68920,18 +68920,18 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glGetVertexAttribLui64vNV")] [CLSCompliant(false)] - public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new NotImplementedException(); } + public static unsafe void GetVertexAttribL(UInt32 index, OpenTK.Graphics.OpenGL4.All pname, [OutAttribute, CountAttribute(Computed = "pname")] UInt64* @params) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [length: COMPSIZE(name)] [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glGetVkProcAddrNV")] - public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new NotImplementedException(); } + public static IntPtr GetVkProcAddr([CountAttribute(Computed = "name")] String name) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glIndexFormatNV")] - public static void IndexFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void IndexFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68940,7 +68940,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void InterpolatePath(Int32 resultPath, Int32 pathA, Int32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -68949,60 +68949,60 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void InterpolatePath(UInt32 resultPath, UInt32 pathA, UInt32 pathB, Single weight) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsBufferResidentNV")] - public static bool IsBufferResident(OpenTK.Graphics.OpenGL4.All target) { throw new NotImplementedException(); } + public static bool IsBufferResident(OpenTK.Graphics.OpenGL4.All target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsCommandListNV")] [CLSCompliant(false)] - public static bool IsCommandList(Int32 list) { throw new NotImplementedException(); } + public static bool IsCommandList(Int32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsCommandListNV")] [CLSCompliant(false)] - public static bool IsCommandList(UInt32 list) { throw new NotImplementedException(); } + public static bool IsCommandList(UInt32 list) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsImageHandleResidentNV")] [CLSCompliant(false)] - public static bool IsImageHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsImageHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static bool IsNamedBufferResident(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glIsNamedBufferResidentNV")] [CLSCompliant(false)] - public static bool IsNamedBufferResident(UInt32 buffer) { throw new NotImplementedException(); } + public static bool IsNamedBufferResident(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(Int32 path) { throw new NotImplementedException(); } + public static bool IsPath(Int32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPathNV")] [CLSCompliant(false)] - public static bool IsPath(UInt32 path) { throw new NotImplementedException(); } + public static bool IsPath(UInt32 path) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69011,7 +69011,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static bool IsPointInFillPath(Int32 path, Int32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69020,7 +69020,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static bool IsPointInFillPath(UInt32 path, UInt32 mask, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69028,7 +69028,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(Int32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69036,31 +69036,31 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glIsPointInStrokePathNV")] [CLSCompliant(false)] - public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new NotImplementedException(); } + public static bool IsPointInStrokePath(UInt32 path, Single x, Single y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsStateNV")] [CLSCompliant(false)] - public static bool IsState(Int32 state) { throw new NotImplementedException(); } + public static bool IsState(Int32 state) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glIsStateNV")] [CLSCompliant(false)] - public static bool IsState(UInt32 state) { throw new NotImplementedException(); } + public static bool IsState(UInt32 state) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glIsTextureHandleResidentNV")] [CLSCompliant(false)] - public static bool IsTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static bool IsTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69072,7 +69072,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69084,7 +69084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69096,7 +69096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new NotImplementedException(); } + public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, IntPtr indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69110,7 +69110,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69124,7 +69124,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69138,7 +69138,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69152,7 +69152,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69166,7 +69166,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69180,7 +69180,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69194,7 +69194,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69208,7 +69208,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69222,7 +69222,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69236,7 +69236,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32[] sizes, Int32[] states, Int32[] fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69250,7 +69250,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, ref Int32 sizes, ref Int32 states, ref Int32 fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69264,7 +69264,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(Int32 list, Int32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32* sizes, Int32* states, Int32* fbos, Int32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69276,7 +69276,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69288,7 +69288,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new NotImplementedException(); } + public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69300,7 +69300,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glListDrawCommandsStatesClientNV")] [CLSCompliant(false)] - public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new NotImplementedException(); } + public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, IntPtr indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69314,7 +69314,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69328,7 +69328,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69342,7 +69342,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69356,7 +69356,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69370,7 +69370,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69384,7 +69384,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69398,7 +69398,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69412,7 +69412,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69426,7 +69426,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] T2[,,] indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69440,7 +69440,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32[] sizes, UInt32[] states, UInt32[] fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69454,7 +69454,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, ref Int32 sizes, ref UInt32 states, ref UInt32 fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// @@ -69468,220 +69468,220 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void ListDrawCommandsStatesClient(UInt32 list, UInt32 segment, [InAttribute, OutAttribute] ref T2 indirects, Int32* sizes, UInt32* states, UInt32* fbos, UInt32 count) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeBufferNonResidentNV")] - public static void MakeBufferNonResident(OpenTK.Graphics.OpenGL4.All target) { throw new NotImplementedException(); } + public static void MakeBufferNonResident(OpenTK.Graphics.OpenGL4.All target) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeBufferResidentNV")] - public static void MakeBufferResident(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeBufferResident(OpenTK.Graphics.OpenGL4.All target, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeImageHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(Int64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeImageHandleResidentNV")] [CLSCompliant(false)] - public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeImageHandleResident(UInt64 handle, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void MakeNamedBufferNonResident(Int32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferNonResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new NotImplementedException(); } + public static void MakeNamedBufferNonResident(UInt32 buffer) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferResident(Int32 buffer, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeNamedBufferResident(Int32 buffer, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glMakeNamedBufferResidentNV")] [CLSCompliant(false)] - public static void MakeNamedBufferResident(UInt32 buffer, OpenTK.Graphics.OpenGL4.All access) { throw new NotImplementedException(); } + public static void MakeNamedBufferResident(UInt32 buffer, OpenTK.Graphics.OpenGL4.All access) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleNonResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleNonResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleNonResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(Int64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(Int64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glMakeTextureHandleResidentNV")] [CLSCompliant(false)] - public static void MakeTextureHandleResident(UInt64 handle) { throw new NotImplementedException(); } + public static void MakeTextureHandleResident(UInt64 handle) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoad3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoad3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixLoadTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixLoadTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x2fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x2(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMult3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMult3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single[] m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new NotImplementedException(); } + public static void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, ref Single m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glMatrixMultTranspose3x3fNV")] [CLSCompliant(false)] - public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new NotImplementedException(); } + public static unsafe void MatrixMultTranspose3x3(OpenTK.Graphics.OpenGL4.All matrixMode, Single* m) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69691,7 +69691,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessCountNV")] - public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69704,7 +69704,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69717,7 +69717,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69730,7 +69730,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69742,7 +69742,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessCountNV")] public static void MultiDrawArraysIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69751,7 +69751,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] - public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69763,7 +69763,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69775,7 +69775,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69787,7 +69787,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] T1[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69798,7 +69798,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawArraysIndirectBindlessNV")] public static void MultiDrawArraysIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, [InAttribute, OutAttribute] ref T1 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69809,7 +69809,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] - public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69823,7 +69823,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69837,7 +69837,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69851,7 +69851,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect_count] /// @@ -69864,7 +69864,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "NV_bindless_multi_draw_indirect_count", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessCountNV")] public static void MultiDrawElementsIndirectBindlessCount(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 maxDrawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69874,7 +69874,7 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] - public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new NotImplementedException(); } + public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, IntPtr indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69887,7 +69887,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69900,7 +69900,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69913,7 +69913,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] T2[,,] indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_multi_draw_indirect] /// @@ -69925,7 +69925,7 @@ namespace OpenTK.Graphics.OpenGL4 [AutoGenerated(Category = "NV_bindless_multi_draw_indirect", Version = "", EntryPoint = "glMultiDrawElementsIndirectBindlessNV")] public static void MultiDrawElementsIndirectBindles(OpenTK.Graphics.OpenGL4.PrimitiveType mode, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute] ref T2 indirect, Int32 drawCount, Int32 stride, Int32 vertexBufferCount) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69934,7 +69934,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69943,7 +69943,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69952,7 +69952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(Int32 framebuffer, Int32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69961,7 +69961,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69970,7 +69970,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new NotImplementedException(); } + public static void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, ref Single v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] /// @@ -69979,13 +69979,13 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glNamedFramebufferSampleLocationsfvNV")] [CLSCompliant(false)] - public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new NotImplementedException(); } + public static unsafe void NamedFramebufferSampleLocations(UInt32 framebuffer, UInt32 start, Int32 count, Single* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glNormalFormatNV")] - public static void NormalFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void NormalFormat(OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -69994,7 +69994,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70003,7 +70003,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70012,7 +70012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,colorFormat)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathColorGenNV")] [CLSCompliant(false)] - public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathColorGen(OpenTK.Graphics.OpenGL4.All color, OpenTK.Graphics.OpenGL4.All genMode, OpenTK.Graphics.OpenGL4.All colorFormat, [CountAttribute(Computed = "genMode,colorFormat")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70023,7 +70023,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70036,7 +70036,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70049,7 +70049,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70062,7 +70062,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70075,7 +70075,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70086,7 +70086,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70099,7 +70099,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70112,7 +70112,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70125,7 +70125,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70138,7 +70138,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70149,7 +70149,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70162,7 +70162,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70175,7 +70175,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70188,7 +70188,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70201,7 +70201,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(Int32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70212,7 +70212,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70225,7 +70225,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70238,7 +70238,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70251,7 +70251,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70264,7 +70264,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70275,7 +70275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70288,7 +70288,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70301,7 +70301,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70314,7 +70314,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70327,7 +70327,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70338,7 +70338,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70351,7 +70351,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70364,7 +70364,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70377,7 +70377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T5[,,] coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70390,7 +70390,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathCommands(UInt32 path, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T5 coords) where T5 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70399,7 +70399,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70410,7 +70410,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70421,7 +70421,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70432,7 +70432,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70443,7 +70443,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(Int32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70452,7 +70452,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoordsNV")] [CLSCompliant(false)] - public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70463,7 +70463,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70474,7 +70474,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70485,7 +70485,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T3[,,] coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70496,12 +70496,12 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathCoords(UInt32 path, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T3 coords) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathCoverDepthFuncNV")] - public static void PathCoverDepthFunc(OpenTK.Graphics.OpenGL4.DepthFunction func) { throw new NotImplementedException(); } + public static void PathCoverDepthFunc(OpenTK.Graphics.OpenGL4.DepthFunction func) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70509,7 +70509,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70517,7 +70517,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70525,7 +70525,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(Int32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70533,7 +70533,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single[] dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70541,7 +70541,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new NotImplementedException(); } + public static void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] ref Single dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70549,12 +70549,12 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: dashCount] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathDashArrayNV")] [CLSCompliant(false)] - public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new NotImplementedException(); } + public static unsafe void PathDashArray(UInt32 path, Int32 dashCount, [CountAttribute(Parameter = "dashCount")] Single* dashArray) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathFogGenNV")] - public static void PathFogGen(OpenTK.Graphics.OpenGL4.All genMode) { throw new NotImplementedException(); } + public static void PathFogGen(OpenTK.Graphics.OpenGL4.All genMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70567,7 +70567,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70582,7 +70582,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70597,7 +70597,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70612,7 +70612,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70627,7 +70627,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, Int32 fontStyle, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70640,7 +70640,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70655,7 +70655,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70670,7 +70670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70685,7 +70685,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70700,7 +70700,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70711,7 +70711,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70722,7 +70722,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphIndexRangeNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70735,7 +70735,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70748,7 +70748,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70761,7 +70761,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70774,7 +70774,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70787,7 +70787,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70800,7 +70800,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] T1[,,] fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70813,7 +70813,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, Int32 fontStyle, Int32 pathParameterTemplate, Single emScale, Int32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70826,7 +70826,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathGlyphIndexRange(OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute] ref T1 fontName, UInt32 fontStyle, UInt32 pathParameterTemplate, Single emScale, UInt32 baseAndCount) where T1 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70840,7 +70840,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70856,7 +70856,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70872,7 +70872,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70888,7 +70888,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70904,7 +70904,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70918,7 +70918,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphRangeNV")] [CLSCompliant(false)] - public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70934,7 +70934,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70950,7 +70950,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70966,7 +70966,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70982,7 +70982,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathGlyphRange(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, UInt32 firstGlyph, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -70997,7 +70997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71015,7 +71015,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71033,7 +71033,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71051,7 +71051,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71069,7 +71069,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, Int32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, Int32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71084,7 +71084,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathGlyphsNV")] [CLSCompliant(false)] - public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [CountAttribute(Computed = "fontTarget,fontName")] IntPtr fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [CountAttribute(Computed = "numGlyphs,type,charcodes")] IntPtr charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71102,7 +71102,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71120,7 +71120,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71138,7 +71138,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] T2[,,] fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] T6[,,] charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71156,7 +71156,7 @@ namespace OpenTK.Graphics.OpenGL4 public static void PathGlyph(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, [InAttribute, OutAttribute, CountAttribute(Computed = "fontTarget,fontName")] ref T2 fontName, UInt32 fontStyle, Int32 numGlyphs, OpenTK.Graphics.OpenGL4.All type, [InAttribute, OutAttribute, CountAttribute(Computed = "numGlyphs,type,charcodes")] ref T6 charcodes, OpenTK.Graphics.OpenGL4.All handleMissingGlyphs, UInt32 pathParameterTemplate, Single emScale) where T2 : struct where T6 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71170,7 +71170,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71186,7 +71186,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71202,7 +71202,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71218,7 +71218,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71234,7 +71234,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71248,7 +71248,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71264,7 +71264,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71280,7 +71280,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71296,7 +71296,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71312,7 +71312,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(Int32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, Int32 firstGlyphIndex, Int32 numGlyphs, Int32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71326,7 +71326,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71342,7 +71342,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71358,7 +71358,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71374,7 +71374,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71390,7 +71390,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, Int32 fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71404,7 +71404,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathMemoryGlyphIndexArrayNV")] [CLSCompliant(false)] - public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new NotImplementedException(); } + public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, IntPtr fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71420,7 +71420,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71436,7 +71436,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71452,7 +71452,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] T3[,,] fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71468,7 +71468,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static OpenTK.Graphics.OpenGL4.All PathMemoryGlyphIndexArray(UInt32 firstPathName, OpenTK.Graphics.OpenGL4.All fontTarget, IntPtr fontSize, [InAttribute, OutAttribute] ref T3 fontData, Int32 faceIndex, UInt32 firstGlyphIndex, Int32 numGlyphs, UInt32 pathParameterTemplate, Single emScale) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71476,7 +71476,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71484,7 +71484,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Single value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71492,7 +71492,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71500,7 +71500,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71508,7 +71508,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71516,7 +71516,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterfvNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Single* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71524,7 +71524,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71532,7 +71532,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameteriNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, Int32 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71540,7 +71540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71548,7 +71548,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(Int32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71556,7 +71556,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new NotImplementedException(); } + public static void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71564,13 +71564,13 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(pname)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathParameterivNV")] [CLSCompliant(false)] - public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new NotImplementedException(); } + public static unsafe void PathParameter(UInt32 path, OpenTK.Graphics.OpenGL4.All pname, [CountAttribute(Computed = "pname")] Int32* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilDepthOffsetNV")] - public static void PathStencilDepthOffset(Single factor, Single units) { throw new NotImplementedException(); } + public static void PathStencilDepthOffset(Single factor, Single units) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71578,7 +71578,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71586,7 +71586,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStencilFuncNV")] [CLSCompliant(false)] - public static void PathStencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new NotImplementedException(); } + public static void PathStencilFunc(OpenTK.Graphics.OpenGL4.StencilFunction func, Int32 @ref, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71595,7 +71595,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71606,7 +71606,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71617,7 +71617,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71628,7 +71628,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71639,7 +71639,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(Int32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71648,7 +71648,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: length] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathStringNV")] [CLSCompliant(false)] - public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new NotImplementedException(); } + public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [CountAttribute(Parameter = "length")] IntPtr pathString) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71659,7 +71659,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71670,7 +71670,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71681,7 +71681,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] T3[,,] pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71692,7 +71692,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathString(UInt32 path, OpenTK.Graphics.OpenGL4.All format, Int32 length, [InAttribute, OutAttribute, CountAttribute(Parameter = "length")] ref T3 pathString) where T3 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71705,7 +71705,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71720,7 +71720,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71735,7 +71735,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71750,7 +71750,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71765,7 +71765,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71778,7 +71778,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71793,7 +71793,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71808,7 +71808,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71823,7 +71823,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71838,7 +71838,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71851,7 +71851,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71866,7 +71866,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71881,7 +71881,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71896,7 +71896,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71911,7 +71911,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(Int32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71924,7 +71924,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71939,7 +71939,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71954,7 +71954,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71969,7 +71969,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71984,7 +71984,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte[] commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -71997,7 +71997,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72012,7 +72012,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72027,7 +72027,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72042,7 +72042,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72057,7 +72057,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] ref Byte commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72070,7 +72070,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCommandsNV")] [CLSCompliant(false)] - public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72085,7 +72085,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72100,7 +72100,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72115,7 +72115,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T7[,,] coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72130,7 +72130,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void PathSubCommands(UInt32 path, Int32 commandStart, Int32 commandsToDelete, Int32 numCommands, [CountAttribute(Parameter = "numCommands")] Byte* commands, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T7 coords) where T7 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72140,7 +72140,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72152,7 +72152,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72164,7 +72164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72176,7 +72176,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72188,7 +72188,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(Int32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72198,7 +72198,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numCoords,coordType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathSubCoordsNV")] [CLSCompliant(false)] - public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new NotImplementedException(); } + public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [CountAttribute(Computed = "numCoords,coordType")] IntPtr coords) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72210,7 +72210,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72222,7 +72222,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72234,7 +72234,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] T4[,,] coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72246,7 +72246,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void PathSubCoords(UInt32 path, Int32 coordStart, Int32 numCoords, OpenTK.Graphics.OpenGL4.All coordType, [InAttribute, OutAttribute, CountAttribute(Computed = "numCoords,coordType")] ref T4 coords) where T4 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72255,7 +72255,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72264,7 +72264,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new NotImplementedException(); } + public static void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72273,7 +72273,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(genMode,components)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPathTexGenNV")] [CLSCompliant(false)] - public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void PathTexGen(OpenTK.Graphics.OpenGL4.All texCoordSet, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, [CountAttribute(Computed = "genMode,components")] Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72286,7 +72286,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72299,7 +72299,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(Int32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72312,7 +72312,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new NotImplementedException(); } + public static bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] out Single x, [OutAttribute, CountAttribute(Count = 1)] out Single y, [OutAttribute, CountAttribute(Count = 1)] out Single tangentX, [OutAttribute, CountAttribute(Count = 1)] out Single tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72325,7 +72325,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: 1] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glPointAlongPathNV")] [CLSCompliant(false)] - public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new NotImplementedException(); } + public static unsafe bool PointAlongPath(UInt32 path, Int32 startSegment, Int32 numSegments, Single distance, [OutAttribute, CountAttribute(Count = 1)] Single* x, [OutAttribute, CountAttribute(Count = 1)] Single* y, [OutAttribute, CountAttribute(Count = 1)] Single* tangentX, [OutAttribute, CountAttribute(Count = 1)] Single* tangentY) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72335,7 +72335,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72345,7 +72345,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72355,7 +72355,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(Int32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72365,7 +72365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single[] coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single[] coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72375,7 +72375,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, ref Single coeffs) { throw new NotImplementedException(); } + public static void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, ref Single coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -72385,7 +72385,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glProgramPathFragmentInputGenNV")] [CLSCompliant(false)] - public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single* coeffs) { throw new NotImplementedException(); } + public static unsafe void ProgramPathFragmentInputGen(UInt32 program, Int32 location, OpenTK.Graphics.OpenGL4.All genMode, Int32 components, Single* coeffs) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72401,7 +72401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72417,7 +72417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72436,7 +72436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72455,7 +72455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72474,7 +72474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72493,7 +72493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72512,7 +72512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72531,7 +72531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72547,7 +72547,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64NV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72566,7 +72566,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72585,7 +72585,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72604,7 +72604,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform1(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72623,7 +72623,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72642,7 +72642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72661,7 +72661,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72680,7 +72680,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72699,7 +72699,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72718,7 +72718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72737,7 +72737,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72756,7 +72756,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72775,7 +72775,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform2(UInt32 program, Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72794,7 +72794,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72813,7 +72813,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72832,7 +72832,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform2(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72854,7 +72854,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72876,7 +72876,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72895,7 +72895,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72914,7 +72914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72933,7 +72933,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72952,7 +72952,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72971,7 +72971,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -72990,7 +72990,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73012,7 +73012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform3(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73031,7 +73031,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73050,7 +73050,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73069,7 +73069,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform3(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73094,7 +73094,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73119,7 +73119,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73138,7 +73138,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73157,7 +73157,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73176,7 +73176,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73195,7 +73195,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73214,7 +73214,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73233,7 +73233,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73258,7 +73258,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void ProgramUniform4(UInt32 program, Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73277,7 +73277,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73296,7 +73296,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for a specified program object @@ -73315,7 +73315,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glProgramUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform4(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73323,7 +73323,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73331,7 +73331,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64NV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73340,7 +73340,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73349,7 +73349,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73358,7 +73358,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73367,7 +73367,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73376,7 +73376,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new NotImplementedException(); } + public static void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -73385,7 +73385,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glProgramUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new NotImplementedException(); } + public static unsafe void ProgramUniformHandle(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* values) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73401,7 +73401,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73417,7 +73417,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64NV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73436,7 +73436,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73455,7 +73455,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73474,7 +73474,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform(Int32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73493,7 +73493,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73512,7 +73512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for a specified program object @@ -73531,7 +73531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glProgramUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void ProgramUniform(UInt32 program, Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_framebuffer_multisample_coverage] /// @@ -73541,56 +73541,56 @@ namespace OpenTK.Graphics.OpenGL4 /// /// [AutoGenerated(Category = "NV_framebuffer_multisample_coverage", Version = "", EntryPoint = "glRenderbufferStorageMultisampleCoverageNV")] - public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); } + public static void RenderbufferStorageMultisampleCoverage(OpenTK.Graphics.OpenGL4.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL4.PixelInternalFormat internalformat, Int32 width, Int32 height) { throw new BindingsNotRewrittenException(); } /// [requires: NV_sample_locations] [AutoGenerated(Category = "NV_sample_locations", Version = "", EntryPoint = "glResolveDepthValuesNV")] - public static void ResolveDepthValues() { throw new NotImplementedException(); } + public static void ResolveDepthValues() { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glSecondaryColorFormatNV")] - public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void SecondaryColorFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(Int64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(Int64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkFenceNV")] [CLSCompliant(false)] - public static void SignalVkFence(UInt64 vkFence) { throw new NotImplementedException(); } + public static void SignalVkFence(UInt64 vkFence) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glSignalVkSemaphoreNV")] [CLSCompliant(false)] - public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void SignalVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glStateCaptureNV")] [CLSCompliant(false)] - public static void StateCapture(Int32 state, OpenTK.Graphics.OpenGL4.All mode) { throw new NotImplementedException(); } + public static void StateCapture(Int32 state, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_command_list] /// /// [AutoGenerated(Category = "NV_command_list", Version = "", EntryPoint = "glStateCaptureNV")] [CLSCompliant(false)] - public static void StateCapture(UInt32 state, OpenTK.Graphics.OpenGL4.All mode) { throw new NotImplementedException(); } + public static void StateCapture(UInt32 state, OpenTK.Graphics.OpenGL4.All mode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73603,7 +73603,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73616,7 +73616,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73629,7 +73629,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73642,7 +73642,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73655,7 +73655,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73668,7 +73668,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73683,7 +73683,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73698,7 +73698,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73713,7 +73713,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73728,7 +73728,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73743,7 +73743,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73758,7 +73758,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73773,7 +73773,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73788,7 +73788,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73803,7 +73803,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73818,7 +73818,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73833,7 +73833,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73848,7 +73848,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73863,7 +73863,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73878,7 +73878,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73893,7 +73893,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73908,7 +73908,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73923,7 +73923,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73938,7 +73938,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73953,7 +73953,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73968,7 +73968,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73983,7 +73983,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -73998,7 +73998,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74013,7 +74013,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74028,7 +74028,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74036,7 +74036,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74044,7 +74044,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilFillPathNV")] [CLSCompliant(false)] - public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74057,7 +74057,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74070,7 +74070,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74083,7 +74083,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74096,7 +74096,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74109,7 +74109,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74122,7 +74122,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(numPaths,transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [CountAttribute(Computed = "numPaths,pathNameType,paths")] IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74137,7 +74137,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74152,7 +74152,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74167,7 +74167,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74182,7 +74182,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74197,7 +74197,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74212,7 +74212,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74227,7 +74227,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74242,7 +74242,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74257,7 +74257,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74272,7 +74272,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74287,7 +74287,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74302,7 +74302,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74317,7 +74317,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74332,7 +74332,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74347,7 +74347,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74362,7 +74362,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74377,7 +74377,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74392,7 +74392,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74407,7 +74407,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74422,7 +74422,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74437,7 +74437,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74452,7 +74452,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74467,7 +74467,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74482,7 +74482,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute, CountAttribute(Computed = "numPaths,pathNameType,paths")] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "numPaths,transformType")] Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74490,7 +74490,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(Int32 path, Int32 reference, Int32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74498,7 +74498,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilStrokePathNV")] [CLSCompliant(false)] - public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new NotImplementedException(); } + public static void StencilStrokePath(UInt32 path, Int32 reference, UInt32 mask) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74512,7 +74512,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74526,7 +74526,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74540,7 +74540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74554,7 +74554,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74568,7 +74568,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74582,7 +74582,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74598,7 +74598,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74614,7 +74614,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74630,7 +74630,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74646,7 +74646,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74662,7 +74662,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74678,7 +74678,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74694,7 +74694,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74710,7 +74710,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74726,7 +74726,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74742,7 +74742,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74758,7 +74758,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74774,7 +74774,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74790,7 +74790,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74806,7 +74806,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74822,7 +74822,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74838,7 +74838,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74854,7 +74854,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74870,7 +74870,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74886,7 +74886,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74902,7 +74902,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74918,7 +74918,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74934,7 +74934,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74950,7 +74950,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74966,7 +74966,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverFillPathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74975,7 +74975,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(Int32 path, OpenTK.Graphics.OpenGL4.All fillMode, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74984,7 +74984,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverFillPathNV")] [CLSCompliant(false)] - public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverFillPath(UInt32 path, OpenTK.Graphics.OpenGL4.All fillMode, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -74998,7 +74998,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75012,7 +75012,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75026,7 +75026,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75040,7 +75040,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75054,7 +75054,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75068,7 +75068,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathInstancedNV")] [CLSCompliant(false)] - public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, IntPtr paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75084,7 +75084,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75100,7 +75100,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75116,7 +75116,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75132,7 +75132,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75148,7 +75148,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75164,7 +75164,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75180,7 +75180,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75196,7 +75196,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75212,7 +75212,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75228,7 +75228,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75244,7 +75244,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75260,7 +75260,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75276,7 +75276,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75292,7 +75292,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75308,7 +75308,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75324,7 +75324,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75340,7 +75340,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75356,7 +75356,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] T2[,,] paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75372,7 +75372,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75388,7 +75388,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75404,7 +75404,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, Int32 pathBase, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75420,7 +75420,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single[] transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75436,7 +75436,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, ref Single transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75452,7 +75452,7 @@ namespace OpenTK.Graphics.OpenGL4 [CLSCompliant(false)] public static unsafe void StencilThenCoverStrokePathInstanced(Int32 numPaths, OpenTK.Graphics.OpenGL4.All pathNameType, [InAttribute, OutAttribute] ref T2 paths, UInt32 pathBase, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode, OpenTK.Graphics.OpenGL4.All transformType, Single* transformValues) where T2 : struct - { throw new NotImplementedException(); } + { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75461,7 +75461,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(Int32 path, Int32 reference, Int32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75470,32 +75470,32 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glStencilThenCoverStrokePathNV")] [CLSCompliant(false)] - public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new NotImplementedException(); } + public static void StencilThenCoverStrokePath(UInt32 path, Int32 reference, UInt32 mask, OpenTK.Graphics.OpenGL4.All coverMode) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(Int32 xbits, Int32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_conservative_raster] /// /// [AutoGenerated(Category = "NV_conservative_raster", Version = "", EntryPoint = "glSubpixelPrecisionBiasNV")] [CLSCompliant(false)] - public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new NotImplementedException(); } + public static void SubpixelPrecisionBia(UInt32 xbits, UInt32 ybits) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glTexCoordFormatNV")] - public static void TexCoordFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void TexCoordFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_texture_barrier] [AutoGenerated(Category = "NV_texture_barrier", Version = "", EntryPoint = "glTextureBarrierNV")] - public static void TextureBarrier() { throw new NotImplementedException(); } + public static void TextureBarrier() { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75504,7 +75504,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75513,7 +75513,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75522,7 +75522,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(Int32 resultPath, Int32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75531,7 +75531,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single[] transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75540,7 +75540,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new NotImplementedException(); } + public static void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] ref Single transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -75549,7 +75549,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: COMPSIZE(transformType)] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glTransformPathNV")] [CLSCompliant(false)] - public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new NotImplementedException(); } + public static unsafe void TransformPath(UInt32 resultPath, UInt32 srcPath, OpenTK.Graphics.OpenGL4.All transformType, [CountAttribute(Computed = "transformType")] Single* transformValues) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75561,7 +75561,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the vector (glUniform*v) commands, specifies the number of elements that are to be modified. This should be 1 if the targeted uniform variable is not an array, and 1 or more if it is an array. For the matrix (glUniformMatrix*) commands, specifies the number of matrices that are to be modified. This should be 1 if the targeted uniform variable is not an array of matrices, and 1 or more if it is an array of matrices. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64NV")] - public static void Uniform1(Int32 location, Int64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75577,7 +75577,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75593,7 +75593,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75609,7 +75609,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75622,7 +75622,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64NV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, UInt64 x) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75638,7 +75638,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75654,7 +75654,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75670,7 +75670,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform1ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform1(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75685,7 +75685,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the matrix commands, specifies whether to transpose the matrix as the values are loaded into the uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64NV")] - public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75701,7 +75701,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75717,7 +75717,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75733,7 +75733,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75749,7 +75749,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64NV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75765,7 +75765,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75781,7 +75781,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75797,7 +75797,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform2ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform2(Int32 location, Int32 count, [CountAttribute(Parameter = "count*2")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75815,7 +75815,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64NV")] - public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75831,7 +75831,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75847,7 +75847,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75863,7 +75863,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75882,7 +75882,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void Uniform3(Int32 location, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75898,7 +75898,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75914,7 +75914,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75930,7 +75930,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform3ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform3(Int32 location, Int32 count, [CountAttribute(Parameter = "count*3")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75951,7 +75951,7 @@ namespace OpenTK.Graphics.OpenGL4 /// For the scalar commands, specifies the new values to be used for the specified uniform variable. /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64NV")] - public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75967,7 +75967,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75983,7 +75983,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -75999,7 +75999,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4i64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76021,7 +76021,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void Uniform4(Int32 location, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76037,7 +76037,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76053,7 +76053,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_gpu_shader5] /// Specify the value of a uniform variable for the current program object @@ -76069,21 +76069,21 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_gpu_shader5", Version = "", EntryPoint = "glUniform4ui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform4(Int32 location, Int32 count, [CountAttribute(Parameter = "count*4")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void UniformHandle(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// /// [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64NV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76091,7 +76091,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76099,7 +76099,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76107,7 +76107,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76115,7 +76115,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76123,7 +76123,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new NotImplementedException(); } + public static void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_bindless_texture] /// @@ -76131,7 +76131,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: count] [AutoGenerated(Category = "NV_bindless_texture", Version = "", EntryPoint = "glUniformHandleui64vNV")] [CLSCompliant(false)] - public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void UniformHandle(Int32 location, Int32 count, [CountAttribute(Parameter = "count")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76144,7 +76144,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76157,7 +76157,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64NV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, UInt64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76173,7 +76173,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76189,7 +76189,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref Int64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76205,7 +76205,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] Int64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76221,7 +76221,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64[] value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76237,7 +76237,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new NotImplementedException(); } + public static void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] ref UInt64 value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_shader_buffer_load] /// Specify the value of a uniform variable for the current program object @@ -76253,7 +76253,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_shader_buffer_load", Version = "", EntryPoint = "glUniformui64vNV")] [CLSCompliant(false)] - public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new NotImplementedException(); } + public static unsafe void Uniform(Int32 location, Int32 count, [CountAttribute(Parameter = "count*1")] UInt64* value) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// Specify the organization of vertex arrays @@ -76275,7 +76275,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribFormatNV")] [CLSCompliant(false)] - public static void VertexAttribFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// Specify the organization of vertex arrays @@ -76297,7 +76297,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribFormatNV")] [CLSCompliant(false)] - public static void VertexAttribFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, bool normalized, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -76306,7 +76306,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribIFormatNV")] [CLSCompliant(false)] - public static void VertexAttribIFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// @@ -76315,49 +76315,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexAttribIFormatNV")] [CLSCompliant(false)] - public static void VertexAttribIFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribIFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [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(); } + public static void VertexAttribL1(Int32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, Int64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, Int64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(Int32 index, [CountAttribute(Count = 1)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64NV")] [CLSCompliant(false)] - public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new NotImplementedException(); } + public static void VertexAttribL1(UInt32 index, UInt64 x) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 1] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL1ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL1(UInt32 index, [CountAttribute(Count = 1)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76365,7 +76365,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL2(Int32 index, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76373,49 +76373,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL2(UInt32 index, Int64 x, Int64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(Int32 index, [CountAttribute(Count = 2)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76423,28 +76423,28 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL2(UInt32 index, UInt64 x, UInt64 y) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 2] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL2ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL2(UInt32 index, [CountAttribute(Count = 2)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76453,7 +76453,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL3(Int32 index, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76462,49 +76462,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL3(UInt32 index, Int64 x, Int64 y, Int64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(Int32 index, [CountAttribute(Count = 3)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76513,28 +76513,28 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL3(UInt32 index, UInt64 x, UInt64 y, UInt64 z) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 3] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL3ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL3(UInt32 index, [CountAttribute(Count = 3)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76544,7 +76544,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL4(Int32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76554,49 +76554,49 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL4(UInt32 index, Int64 x, Int64 y, Int64 z, Int64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(Int32 index, [CountAttribute(Count = 4)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref Int64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4i64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] Int64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76606,28 +76606,28 @@ namespace OpenTK.Graphics.OpenGL4 /// [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(); } + public static void VertexAttribL4(UInt32 index, UInt64 x, UInt64 y, UInt64 z, UInt64 w) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64[] v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64[] v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref UInt64 v) { throw new NotImplementedException(); } + public static void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] ref UInt64 v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// /// [length: 4] [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribL4ui64vNV")] [CLSCompliant(false)] - public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64* v) { throw new NotImplementedException(); } + public static unsafe void VertexAttribL4(UInt32 index, [CountAttribute(Count = 4)] UInt64* v) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76636,7 +76636,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(Int32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_attrib_integer_64bit] /// @@ -76645,14 +76645,14 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_vertex_attrib_integer_64bit", Version = "", EntryPoint = "glVertexAttribLFormatNV")] [CLSCompliant(false)] - public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexAttribLFormat(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_vertex_buffer_unified_memory] /// /// /// [AutoGenerated(Category = "NV_vertex_buffer_unified_memory", Version = "", EntryPoint = "glVertexFormatNV")] - public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new NotImplementedException(); } + public static void VertexFormat(Int32 size, OpenTK.Graphics.OpenGL4.All type, Int32 stride) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -76660,7 +76660,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] [CLSCompliant(false)] - public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new NotImplementedException(); } + public static void ViewportPositionWScale(Int32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } /// [requires: NV_clip_space_w_scaling] /// @@ -76668,7 +76668,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_clip_space_w_scaling", Version = "", EntryPoint = "glViewportPositionWScaleNV")] [CLSCompliant(false)] - public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new NotImplementedException(); } + public static void ViewportPositionWScale(UInt32 index, Single xcoeff, Single ycoeff) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -76678,7 +76678,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.OpenGL4.All swizzlex, OpenTK.Graphics.OpenGL4.All swizzley, OpenTK.Graphics.OpenGL4.All swizzlez, OpenTK.Graphics.OpenGL4.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(Int32 index, OpenTK.Graphics.OpenGL4.All swizzlex, OpenTK.Graphics.OpenGL4.All swizzley, OpenTK.Graphics.OpenGL4.All swizzlez, OpenTK.Graphics.OpenGL4.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_viewport_swizzle] /// @@ -76688,19 +76688,19 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "NV_viewport_swizzle", Version = "", EntryPoint = "glViewportSwizzleNV")] [CLSCompliant(false)] - public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.OpenGL4.All swizzlex, OpenTK.Graphics.OpenGL4.All swizzley, OpenTK.Graphics.OpenGL4.All swizzlez, OpenTK.Graphics.OpenGL4.All swizzlew) { throw new NotImplementedException(); } + public static void ViewportSwizzle(UInt32 index, OpenTK.Graphics.OpenGL4.All swizzlex, OpenTK.Graphics.OpenGL4.All swizzley, OpenTK.Graphics.OpenGL4.All swizzlez, OpenTK.Graphics.OpenGL4.All swizzlew) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(Int64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_draw_vulkan_image] /// [AutoGenerated(Category = "NV_draw_vulkan_image", Version = "", EntryPoint = "glWaitVkSemaphoreNV")] [CLSCompliant(false)] - public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new NotImplementedException(); } + public static void WaitVkSemaphore(UInt64 vkSemaphore) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76709,7 +76709,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76718,7 +76718,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref Int32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76727,7 +76727,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(Int32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] Int32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76736,7 +76736,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32[] paths, [CountAttribute(Parameter = "numPaths")] Single[] weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76745,7 +76745,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new NotImplementedException(); } + public static void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] ref UInt32 paths, [CountAttribute(Parameter = "numPaths")] ref Single weights) { throw new BindingsNotRewrittenException(); } /// [requires: NV_path_rendering] /// @@ -76754,7 +76754,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [length: numPaths] [AutoGenerated(Category = "NV_path_rendering", Version = "", EntryPoint = "glWeightPathsNV")] [CLSCompliant(false)] - public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new NotImplementedException(); } + public static unsafe void WeightPath(UInt32 resultPath, Int32 numPaths, [CountAttribute(Parameter = "numPaths")] UInt32* paths, [CountAttribute(Parameter = "numPaths")] Single* weights) { throw new BindingsNotRewrittenException(); } } @@ -76769,7 +76769,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, Int32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } /// [requires: OVR_multiview] /// @@ -76780,7 +76780,7 @@ namespace OpenTK.Graphics.OpenGL4 /// [AutoGenerated(Category = "OVR_multiview", Version = "", EntryPoint = "glFramebufferTextureMultiviewOVR")] [CLSCompliant(false)] - public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new NotImplementedException(); } + public static void FramebufferTextureMultiview(OpenTK.Graphics.OpenGL4.FramebufferTarget target, OpenTK.Graphics.OpenGL4.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 baseViewIndex, Int32 numViews) { throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/InteropHelper.cs b/src/OpenTK/InteropHelper.cs index b61bf0e1..97bdef14 100644 --- a/src/OpenTK/InteropHelper.cs +++ b/src/OpenTK/InteropHelper.cs @@ -31,152 +31,152 @@ namespace OpenTK { public static void Call(IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static void Call(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static TRet CallReturn(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, IntPtr address) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static IntPtr Pin(T[] arg) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static IntPtr Pin(T[,] arg) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static IntPtr Pin(T[,,] arg) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } public static IntPtr Pin(ref T arg) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } } diff --git a/src/OpenTK/Platform/Windows/Bindings/Wgl.cs b/src/OpenTK/Platform/Windows/Bindings/Wgl.cs index 5cb9e10f..4d44fa8e 100644 --- a/src/OpenTK/Platform/Windows/Bindings/Wgl.cs +++ b/src/OpenTK/Platform/Windows/Bindings/Wgl.cs @@ -106,28 +106,28 @@ namespace OpenTK.Platform.Windows public static IntPtr CreateContextAttribs(IntPtr hDC, IntPtr hShareContext, int[] attribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetExtensionsStringARB")] public static string GetExtensionsString(IntPtr hdc) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPixelFormatAttribivARB")] public static Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, int[] piAttributes, [Out] int[] piValues) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPixelFormatAttribivARB")] public static Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, ref int piAttributes, [Out] out int piValues) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPixelFormatAttribfvARB")] @@ -135,119 +135,119 @@ namespace OpenTK.Platform.Windows public static Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, int nAttributes, int[] piAttributes, [Out] Single[] pfValues) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPixelFormatAttribfvARB")] public static Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, ref int piAttributes, [Out] out Single pfValues) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglChoosePixelFormatARB")] public static Boolean ChoosePixelFormat(IntPtr hdc, int[] piAttribIList, Single[] pfAttribFList, Int32 nMaxFormats, [Out] int[] piFormats, out int nNumFormats) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglChoosePixelFormatARB")] public static Boolean ChoosePixelFormat(IntPtr hdc, ref int piAttribIList, ref Single pfAttribFList, Int32 nMaxFormats, [Out] out int piFormats, [Out] out Int32 nNumFormats) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglMakeContextCurrentARB")] public static Boolean MakeContextCurrent(IntPtr hDrawDC, IntPtr hReadDC, IntPtr hglrc) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetCurrentReadDCARB")] public static IntPtr GetCurrentReadDC() { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglCreatePbufferARB")] public static IntPtr CreatePbuffer(IntPtr hDC, int iPixelFormat, int iWidth, int iHeight, int[] piAttribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglCreatePbufferARB")] public static IntPtr CreatePbuffer(IntPtr hDC, int iPixelFormat, int iWidth, int iHeight, ref int piAttribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetPbufferDCARB")] public static IntPtr GetPbufferDC(IntPtr hPbuffer) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglReleasePbufferDCARB")] public static int ReleasePbufferDC(IntPtr hPbuffer, IntPtr hDC) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglDestroyPbufferARB")] public static Boolean DestroyPbuffer(IntPtr hPbuffer) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglQueryPbufferARB")] public static Boolean QueryPbuffer(IntPtr hPbuffer, int iAttribute, [Out] int[] piValue) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglQueryPbufferARB")] public static Boolean QueryPbuffer(IntPtr hPbuffer, int iAttribute, [Out] out int piValue) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglBindTexImageARB")] public static Boolean BindTexImage(IntPtr hPbuffer, int iBuffer) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglReleaseTexImageARB")] public static Boolean ReleaseTexImage(IntPtr hPbuffer, int iBuffer) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglSetPbufferAttribARB")] public static Boolean SetPbufferAttrib(IntPtr hPbuffer, int[] piAttribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglSetPbufferAttribARB")] public static Boolean SetPbufferAttrib(IntPtr hPbuffer, ref int piAttribList) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } @@ -257,21 +257,21 @@ namespace OpenTK.Platform.Windows public static string GetExtensionsString() { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglSwapIntervalEXT")] public static Boolean SwapInterval(int interval) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "wglGetSwapIntervalEXT")] public static int GetSwapInterval() { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } diff --git a/src/OpenTK/Platform/X11/Bindings/Glx.cs b/src/OpenTK/Platform/X11/Bindings/Glx.cs index 9cb3e8b3..cc185b8d 100644 --- a/src/OpenTK/Platform/X11/Bindings/Glx.cs +++ b/src/OpenTK/Platform/X11/Bindings/Glx.cs @@ -416,13 +416,13 @@ namespace OpenTK.Platform.X11 [AutoGenerated(EntryPoint = "glXCreateContextAttribsARB")] unsafe public static IntPtr CreateContextAttribs(IntPtr display, IntPtr fbconfig, IntPtr share_context, bool direct, int* attribs) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "glXCreateContextAttribsARB")] public static IntPtr CreateContextAttribs(IntPtr display, IntPtr fbconfig, IntPtr share_context, bool direct, int[] attribs) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } // The linux OpenGL ABI 3.6 (1999) requires @@ -443,7 +443,7 @@ namespace OpenTK.Platform.X11 [AutoGenerated(EntryPoint = "glXSwapIntervalEXT")] public static ErrorCode SwapInterval(IntPtr display, IntPtr drawable, int interval) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } @@ -452,13 +452,13 @@ namespace OpenTK.Platform.X11 [AutoGenerated(EntryPoint = "glXSwapIntervalMESA")] public static ErrorCode SwapInterval(int interval) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } [AutoGenerated(EntryPoint = "glXGetSwapIntervalMESA")] public static int GetSwapInterval() { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } } @@ -467,7 +467,7 @@ namespace OpenTK.Platform.X11 [AutoGenerated(EntryPoint = "glXSwapIntervalSGI")] public static ErrorCode SwapInterval(int interval) { - throw new NotImplementedException(); + throw new BindingsNotRewrittenException(); } }